結果

問題 No.836 じょうよ
ユーザー miya145592miya145592
提出日時 2023-05-21 05:29:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 105 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 86,888 KB
実行使用メモリ 77,320 KB
最終ジャッジ日時 2023-08-23 12:32:25
合計ジャッジ時間 6,664 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
77,320 KB
testcase_01 AC 71 ms
71,292 KB
testcase_02 AC 70 ms
71,316 KB
testcase_03 AC 70 ms
71,304 KB
testcase_04 AC 73 ms
71,008 KB
testcase_05 AC 71 ms
71,292 KB
testcase_06 AC 70 ms
71,408 KB
testcase_07 AC 69 ms
71,528 KB
testcase_08 AC 71 ms
71,072 KB
testcase_09 AC 71 ms
71,312 KB
testcase_10 AC 69 ms
71,016 KB
testcase_11 AC 89 ms
76,764 KB
testcase_12 AC 91 ms
76,652 KB
testcase_13 AC 89 ms
76,492 KB
testcase_14 AC 82 ms
76,528 KB
testcase_15 AC 87 ms
76,516 KB
testcase_16 AC 98 ms
77,088 KB
testcase_17 AC 97 ms
76,988 KB
testcase_18 AC 89 ms
76,540 KB
testcase_19 AC 89 ms
76,760 KB
testcase_20 AC 86 ms
76,724 KB
testcase_21 AC 81 ms
76,724 KB
testcase_22 AC 85 ms
76,496 KB
testcase_23 AC 88 ms
77,044 KB
testcase_24 AC 82 ms
76,260 KB
testcase_25 AC 83 ms
76,564 KB
testcase_26 AC 81 ms
76,404 KB
testcase_27 AC 81 ms
76,396 KB
testcase_28 AC 90 ms
76,524 KB
testcase_29 AC 82 ms
76,684 KB
testcase_30 AC 81 ms
76,724 KB
testcase_31 AC 91 ms
76,616 KB
testcase_32 AC 81 ms
76,636 KB
testcase_33 AC 82 ms
76,508 KB
testcase_34 AC 81 ms
76,520 KB
testcase_35 AC 91 ms
76,732 KB
testcase_36 AC 94 ms
77,020 KB
testcase_37 AC 94 ms
77,284 KB
testcase_38 AC 96 ms
77,292 KB
testcase_39 AC 97 ms
77,296 KB
testcase_40 AC 97 ms
76,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l, r, n = map(int, input().split())
for i in range(n):
    ans = ((r-i)//n) - ((l-1-i)//n)
    print(ans)
0