結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
_KingdomOfMoray
|
| 提出日時 | 2019-12-08 10:10:01 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 5,000 ms |
| コード長 | 226 bytes |
| コンパイル時間 | 285 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-12-29 18:17:13 |
| 合計ジャッジ時間 | 1,794 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 |
ソースコード
input_params = list(map(int,input().split()))
a = input_params[0]
b = input_params[1]
loop = b - a + 1
for i in range(loop):
cur = a + i
curstr = str(cur)
if cur % 3 == 0 or '3' in curstr:
print(cur)
_KingdomOfMoray