結果
| 問題 | No.207 世界のなんとか |
| コンテスト | |
| ユーザー |
togatoga
|
| 提出日時 | 2015-08-20 21:21:03 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 78 ms / 5,000 ms |
| コード長 | 222 bytes |
| 記録 | |
| コンパイル時間 | 148 ms |
| コンパイル使用メモリ | 77,496 KB |
| 最終ジャッジ日時 | 2025-12-03 16:21:09 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 |
ソースコード
A,B = map(int, raw_input().split())
def check(x):
if (x % 3 == 0):
return True
if (str(x).count('3') >= 1):
return True
return False
for x in range(A, B + 1):
if (check(x)):
print x
togatoga