結果

問題 No.1114 足し算盆に返らず
ユーザー maimai
提出日時 2020-07-17 21:30:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 40 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 11,488 KB
実行使用メモリ 16,104 KB
最終ジャッジ日時 2023-08-19 23:48:22
合計ジャッジ時間 8,794 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
15,880 KB
testcase_01 AC 99 ms
16,084 KB
testcase_02 AC 98 ms
16,104 KB
testcase_03 AC 93 ms
15,804 KB
testcase_04 AC 97 ms
15,936 KB
testcase_05 AC 88 ms
15,520 KB
testcase_06 AC 97 ms
16,084 KB
testcase_07 AC 97 ms
16,056 KB
testcase_08 AC 90 ms
15,544 KB
testcase_09 AC 88 ms
15,696 KB
testcase_10 AC 89 ms
15,512 KB
testcase_11 AC 78 ms
15,036 KB
testcase_12 AC 91 ms
15,688 KB
testcase_13 AC 97 ms
15,972 KB
testcase_14 AC 80 ms
15,152 KB
testcase_15 AC 86 ms
15,512 KB
testcase_16 AC 88 ms
15,512 KB
testcase_17 AC 92 ms
15,600 KB
testcase_18 AC 83 ms
15,448 KB
testcase_19 AC 86 ms
15,480 KB
testcase_20 AC 97 ms
15,948 KB
testcase_21 AC 85 ms
15,384 KB
testcase_22 AC 75 ms
15,292 KB
testcase_23 AC 76 ms
15,036 KB
testcase_24 AC 76 ms
15,064 KB
testcase_25 AC 75 ms
15,368 KB
testcase_26 AC 76 ms
15,052 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
puts (((n+2)/2)..n).to_a*' '
0