結果

問題 No.836 じょうよ
ユーザー kotatsugamekotatsugame
提出日時 2019-06-14 21:54:45
言語 Ruby
(3.2.2)
結果
AC  
実行時間 383 ms / 1,000 ms
コード長 56 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 11,564 KB
実行使用メモリ 16,056 KB
最終ジャッジ日時 2023-08-08 23:34:18
合計ジャッジ時間 8,135 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
15,936 KB
testcase_01 AC 75 ms
15,288 KB
testcase_02 AC 76 ms
15,140 KB
testcase_03 AC 76 ms
15,152 KB
testcase_04 AC 77 ms
15,056 KB
testcase_05 AC 80 ms
15,232 KB
testcase_06 AC 80 ms
15,256 KB
testcase_07 AC 80 ms
15,124 KB
testcase_08 AC 81 ms
15,356 KB
testcase_09 AC 81 ms
15,092 KB
testcase_10 AC 80 ms
15,292 KB
testcase_11 AC 111 ms
15,800 KB
testcase_12 AC 123 ms
15,672 KB
testcase_13 AC 98 ms
16,000 KB
testcase_14 AC 81 ms
15,396 KB
testcase_15 AC 103 ms
15,884 KB
testcase_16 AC 315 ms
15,796 KB
testcase_17 AC 300 ms
15,880 KB
testcase_18 AC 104 ms
15,920 KB
testcase_19 AC 119 ms
15,840 KB
testcase_20 AC 210 ms
15,784 KB
testcase_21 AC 84 ms
15,660 KB
testcase_22 AC 184 ms
15,812 KB
testcase_23 AC 337 ms
15,672 KB
testcase_24 AC 102 ms
15,756 KB
testcase_25 AC 176 ms
15,904 KB
testcase_26 AC 86 ms
15,552 KB
testcase_27 AC 89 ms
15,492 KB
testcase_28 AC 108 ms
15,676 KB
testcase_29 AC 93 ms
15,748 KB
testcase_30 AC 90 ms
15,344 KB
testcase_31 AC 117 ms
15,808 KB
testcase_32 AC 113 ms
15,988 KB
testcase_33 AC 90 ms
15,288 KB
testcase_34 AC 110 ms
15,724 KB
testcase_35 AC 108 ms
15,924 KB
testcase_36 AC 237 ms
15,728 KB
testcase_37 AC 213 ms
16,000 KB
testcase_38 AC 268 ms
15,796 KB
testcase_39 AC 238 ms
15,888 KB
testcase_40 AC 383 ms
16,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

l,r,n=gets.split.map &:to_i
n.times{p r/n-(l-=1)/n
r-=1}
0