結果

問題 No.207 世界のなんとか
ユーザー pajannatpajannat
提出日時 2021-04-04 12:41:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 87,272 KB
実行使用メモリ 71,628 KB
最終ジャッジ日時 2023-08-27 11:37:26
合計ジャッジ時間 2,889 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 73 ms
71,460 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 72 ms
71,368 KB
testcase_07 AC 71 ms
71,620 KB
testcase_08 AC 72 ms
71,404 KB
testcase_09 AC 71 ms
71,512 KB
testcase_10 AC 71 ms
71,472 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 70 ms
71,472 KB
testcase_17 AC 70 ms
71,404 KB
testcase_18 AC 72 ms
71,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
for i in range(A, B+1):
	if (i % 3) == 0:
		print(i)
	elif (i // 100) == 3 or (i // 10) == 3 or (i % 10) == 3:
		print(i)
0