結果

問題 No.836 じょうよ
ユーザー Alex WiceAlex Wice
提出日時 2019-06-14 21:23:51
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 116 ms / 1,000 ms
コード長 240 bytes
コンパイル時間 1,207 ms
コンパイル使用メモリ 76,696 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-04-26 07:16:16
合計ジャッジ時間 6,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
78,592 KB
testcase_01 AC 70 ms
75,712 KB
testcase_02 AC 73 ms
75,704 KB
testcase_03 AC 71 ms
75,648 KB
testcase_04 AC 71 ms
75,392 KB
testcase_05 AC 69 ms
75,520 KB
testcase_06 AC 70 ms
75,648 KB
testcase_07 AC 70 ms
75,648 KB
testcase_08 AC 70 ms
75,136 KB
testcase_09 AC 71 ms
75,136 KB
testcase_10 AC 71 ms
75,520 KB
testcase_11 AC 95 ms
78,208 KB
testcase_12 AC 96 ms
78,080 KB
testcase_13 AC 96 ms
78,336 KB
testcase_14 AC 83 ms
77,952 KB
testcase_15 AC 91 ms
78,080 KB
testcase_16 AC 116 ms
79,488 KB
testcase_17 AC 113 ms
78,976 KB
testcase_18 AC 98 ms
78,252 KB
testcase_19 AC 106 ms
78,336 KB
testcase_20 AC 98 ms
79,028 KB
testcase_21 AC 82 ms
77,952 KB
testcase_22 AC 93 ms
78,336 KB
testcase_23 AC 97 ms
78,848 KB
testcase_24 AC 86 ms
78,208 KB
testcase_25 AC 89 ms
78,228 KB
testcase_26 AC 84 ms
77,824 KB
testcase_27 AC 84 ms
77,728 KB
testcase_28 AC 94 ms
78,596 KB
testcase_29 AC 89 ms
78,208 KB
testcase_30 AC 87 ms
77,696 KB
testcase_31 AC 96 ms
77,964 KB
testcase_32 AC 83 ms
77,952 KB
testcase_33 AC 83 ms
78,336 KB
testcase_34 AC 87 ms
78,080 KB
testcase_35 AC 92 ms
78,080 KB
testcase_36 AC 102 ms
78,336 KB
testcase_37 AC 102 ms
78,760 KB
testcase_38 AC 102 ms
78,336 KB
testcase_39 AC 98 ms
78,856 KB
testcase_40 AC 111 ms
78,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

rr = raw_input
rrm = lambda: map(int, rr().split())

def f(X, r, N):
    if X < r: return 0
    X -= r
    return X / N + 1

L, R, N = rrm()
ans = [0] * N
for r in xrange(N):
    ans[r] = f(R, r, N) - f(L-1, r, N)
for x in ans:
    print x
0