結果

問題 No.207 世界のなんとか
ユーザー Agnext00Agnext00
提出日時 2019-03-12 00:59:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 206 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-23 15:43:43
合計ジャッジ時間 1,441 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(map(int,input().split()))
num=[0]*N[1]
i=N[0]
j =0

while N[1]>=i:
    if i%10 == 3 or i%3 == 0:
        num[j] = i
        j+=1
    i += 1
i=0        
for i in range(j):
    print(num[i])
    i+=1
0