結果

問題 No.207 世界のなんとか
ユーザー Agnext00Agnext00
提出日時 2019-03-12 00:59:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 206 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 10,632 KB
実行使用メモリ 7,980 KB
最終ジャッジ日時 2023-09-05 20:18:59
合計ジャッジ時間 1,223 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 14 ms
7,792 KB
testcase_07 AC 15 ms
7,756 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 16 ms
7,860 KB
testcase_17 AC 15 ms
7,824 KB
testcase_18 AC 15 ms
7,776 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