結果

問題 No.964 2020
ユーザー gemmarogemmaro
提出日時 2020-01-13 20:24:40
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 91 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 11,312 KB
実行使用メモリ 15,308 KB
最終ジャッジ日時 2023-08-23 12:54:20
合計ジャッジ時間 2,108 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
15,092 KB
testcase_01 AC 81 ms
15,276 KB
testcase_02 AC 81 ms
15,044 KB
testcase_03 AC 82 ms
15,288 KB
testcase_04 AC 81 ms
15,256 KB
testcase_05 AC 82 ms
15,308 KB
testcase_06 AC 81 ms
15,264 KB
testcase_07 AC 81 ms
15,096 KB
testcase_08 AC 81 ms
15,068 KB
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

N = gets.to_i
puts N.times.map { |i| (i + 1).to_s * N }.join
0