結果

問題 No.836 じょうよ
ユーザー daku9640daku9640
提出日時 2019-06-14 21:36:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 74 ms / 1,000 ms
コード長 180 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 10,680 KB
実行使用メモリ 12,572 KB
最終ジャッジ日時 2023-08-08 17:32:24
合計ジャッジ時間 2,852 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
12,188 KB
testcase_01 AC 16 ms
7,784 KB
testcase_02 AC 15 ms
7,856 KB
testcase_03 AC 14 ms
7,888 KB
testcase_04 AC 14 ms
7,780 KB
testcase_05 AC 15 ms
7,816 KB
testcase_06 AC 14 ms
7,884 KB
testcase_07 AC 14 ms
7,944 KB
testcase_08 AC 14 ms
7,816 KB
testcase_09 AC 15 ms
7,828 KB
testcase_10 AC 14 ms
7,964 KB
testcase_11 AC 19 ms
8,740 KB
testcase_12 AC 22 ms
8,704 KB
testcase_13 AC 19 ms
8,640 KB
testcase_14 AC 15 ms
8,224 KB
testcase_15 AC 20 ms
8,688 KB
testcase_16 AC 74 ms
12,572 KB
testcase_17 AC 68 ms
12,016 KB
testcase_18 AC 19 ms
8,532 KB
testcase_19 AC 25 ms
8,916 KB
testcase_20 AC 46 ms
10,348 KB
testcase_21 AC 16 ms
8,428 KB
testcase_22 AC 32 ms
9,288 KB
testcase_23 AC 55 ms
10,640 KB
testcase_24 AC 17 ms
8,520 KB
testcase_25 AC 29 ms
9,044 KB
testcase_26 AC 14 ms
7,788 KB
testcase_27 AC 16 ms
8,316 KB
testcase_28 AC 19 ms
8,728 KB
testcase_29 AC 16 ms
8,304 KB
testcase_30 AC 15 ms
8,376 KB
testcase_31 AC 19 ms
8,700 KB
testcase_32 AC 19 ms
8,660 KB
testcase_33 AC 15 ms
8,416 KB
testcase_34 AC 19 ms
8,688 KB
testcase_35 AC 19 ms
8,644 KB
testcase_36 AC 38 ms
9,628 KB
testcase_37 AC 37 ms
9,672 KB
testcase_38 AC 48 ms
10,228 KB
testcase_39 AC 42 ms
9,832 KB
testcase_40 AC 69 ms
11,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    l, r, n = map(int, input().split())
    ans = [0] * n
    for i in range(l, l + n):
        ans[i % n] = len(range(i, r + 1, n))
    print(*ans, sep="\n")
solve()
0