結果

問題 No.836 じょうよ
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-20 12:34:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 200 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 86,560 KB
実行使用メモリ 97,796 KB
最終ジャッジ日時 2023-08-15 09:31:51
合計ジャッジ時間 8,235 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
97,500 KB
testcase_01 AC 64 ms
70,868 KB
testcase_02 AC 65 ms
70,868 KB
testcase_03 AC 64 ms
70,752 KB
testcase_04 AC 64 ms
70,804 KB
testcase_05 AC 65 ms
70,800 KB
testcase_06 AC 66 ms
70,752 KB
testcase_07 AC 67 ms
70,564 KB
testcase_08 AC 65 ms
70,500 KB
testcase_09 AC 65 ms
70,968 KB
testcase_10 AC 63 ms
70,852 KB
testcase_11 AC 75 ms
76,080 KB
testcase_12 AC 77 ms
77,072 KB
testcase_13 AC 76 ms
76,024 KB
testcase_14 AC 77 ms
76,028 KB
testcase_15 AC 76 ms
76,696 KB
testcase_16 AC 101 ms
97,796 KB
testcase_17 AC 100 ms
95,340 KB
testcase_18 AC 74 ms
76,328 KB
testcase_19 AC 77 ms
78,204 KB
testcase_20 AC 90 ms
86,416 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,n=map(int,input().split())
mod=set()
dic={}
for i in range(l,r+1):
    mod.add(i%n)
    dic[i%n]=i
    if len(mod) == n:
        break
    
for i in range(n):
    print( ((r-dic[i])//n)+1 )

    
0