結果

問題 No.836 じょうよ
ユーザー dangodango
提出日時 2023-06-16 20:23:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 1,000 ms
コード長 92 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 87,044 KB
実行使用メモリ 77,308 KB
最終ジャッジ日時 2023-09-06 17:43:07
合計ジャッジ時間 5,850 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
77,128 KB
testcase_01 AC 72 ms
71,264 KB
testcase_02 AC 72 ms
71,232 KB
testcase_03 AC 75 ms
71,396 KB
testcase_04 AC 72 ms
71,096 KB
testcase_05 AC 71 ms
71,400 KB
testcase_06 AC 72 ms
71,304 KB
testcase_07 AC 74 ms
71,220 KB
testcase_08 AC 74 ms
71,128 KB
testcase_09 AC 71 ms
70,964 KB
testcase_10 AC 70 ms
71,368 KB
testcase_11 AC 83 ms
76,656 KB
testcase_12 AC 84 ms
76,648 KB
testcase_13 AC 83 ms
76,472 KB
testcase_14 AC 82 ms
76,800 KB
testcase_15 AC 83 ms
76,460 KB
testcase_16 AC 91 ms
77,176 KB
testcase_17 AC 91 ms
77,080 KB
testcase_18 AC 82 ms
76,724 KB
testcase_19 AC 81 ms
76,660 KB
testcase_20 AC 84 ms
76,272 KB
testcase_21 AC 80 ms
76,128 KB
testcase_22 AC 81 ms
76,600 KB
testcase_23 AC 87 ms
77,252 KB
testcase_24 AC 81 ms
76,524 KB
testcase_25 AC 84 ms
76,636 KB
testcase_26 AC 81 ms
76,644 KB
testcase_27 AC 82 ms
76,456 KB
testcase_28 AC 81 ms
76,460 KB
testcase_29 AC 81 ms
76,644 KB
testcase_30 AC 83 ms
76,660 KB
testcase_31 AC 80 ms
76,540 KB
testcase_32 AC 82 ms
76,272 KB
testcase_33 AC 82 ms
76,448 KB
testcase_34 AC 84 ms
76,640 KB
testcase_35 AC 84 ms
76,552 KB
testcase_36 AC 88 ms
76,536 KB
testcase_37 AC 84 ms
76,508 KB
testcase_38 AC 87 ms
76,544 KB
testcase_39 AC 85 ms
76,456 KB
testcase_40 AC 92 ms
77,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int,input().split())
for i in range(C): print((B - i) // C - (A - 1 - i) // C)
0