結果

問題 No.207 世界のなんとか
ユーザー organ05
提出日時 2016-05-14 01:18:55
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 161 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 20:52:45
合計ジャッジ時間 1,088 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int, raw_input().split())

for i in range(A,B):
	if i % 3 == 0:
		print i
	else:
		t = str(i)
		for j in range(len(t)):
			if t[j] == '3':
				print i
0