結果

問題 No.1926 Sequence of Remainders
ユーザー n_getn_get
提出日時 2022-07-13 13:28:41
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 7,196 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-06-24 15:27:11
合計ジャッジ時間 18,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
16,896 KB
testcase_01 AC 351 ms
20,736 KB
testcase_02 AC 352 ms
20,736 KB
testcase_03 AC 341 ms
20,736 KB
testcase_04 AC 349 ms
20,864 KB
testcase_05 AC 348 ms
20,992 KB
testcase_06 AC 434 ms
20,992 KB
testcase_07 AC 429 ms
20,736 KB
testcase_08 AC 435 ms
20,736 KB
testcase_09 AC 436 ms
20,736 KB
testcase_10 AC 429 ms
20,864 KB
testcase_11 AC 438 ms
20,736 KB
testcase_12 AC 432 ms
20,736 KB
testcase_13 AC 431 ms
20,864 KB
testcase_14 AC 439 ms
20,736 KB
testcase_15 AC 440 ms
20,736 KB
testcase_16 AC 435 ms
20,736 KB
testcase_17 AC 437 ms
20,736 KB
testcase_18 AC 435 ms
20,864 KB
testcase_19 AC 431 ms
20,992 KB
testcase_20 AC 432 ms
20,736 KB
testcase_21 AC 437 ms
20,992 KB
testcase_22 AC 434 ms
20,992 KB
testcase_23 AC 432 ms
20,992 KB
testcase_24 AC 432 ms
20,736 KB
testcase_25 AC 429 ms
20,736 KB
testcase_26 AC 426 ms
20,992 KB
testcase_27 AC 422 ms
20,864 KB
testcase_28 AC 429 ms
20,864 KB
testcase_29 AC 423 ms
20,864 KB
testcase_30 AC 429 ms
20,864 KB
testcase_31 AC 432 ms
20,736 KB
testcase_32 AC 426 ms
20,736 KB
testcase_33 AC 421 ms
20,864 KB
testcase_34 AC 424 ms
20,992 KB
testcase_35 AC 417 ms
20,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(dotimes [q (read)]
         (let* [[n (read)][m (read)][k (read)]]
               (let [[x (mod k m)]]
                    (if (>= x (- m n))
                        (print 0)
                        (print x)))))
0