Submission #2972999


Source Code Expand

n = gets.to_i
matrix = []
n.times do |i|
  matrix[i] = gets.chomp.chars
end
matrix.reverse.transpose.each do |line|
  puts line.join
end

Submission Info

Submission Time
Task B - 回転
User Mahito
Language Ruby (2.3.3)
Score 100
Code Size 143 Byte
Status AC
Exec Time 8 ms
Memory 1788 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 11
Set Name Test Cases
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt
Case Name Status Exec Time Memory
000.txt AC 7 ms 1788 KB
001.txt AC 7 ms 1788 KB
002.txt AC 8 ms 1788 KB
003.txt AC 7 ms 1788 KB
004.txt AC 8 ms 1788 KB
005.txt AC 7 ms 1788 KB
006.txt AC 8 ms 1788 KB
007.txt AC 7 ms 1788 KB
008.txt AC 7 ms 1788 KB
009.txt AC 7 ms 1788 KB
010.txt AC 8 ms 1788 KB