結果

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

ソースコード

diff #

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

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