結果
問題 |
No.207 世界のなんとか
|
ユーザー |
|
提出日時 | 2018-02-23 12:59:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
MLE
|
実行時間 | - |
コード長 | 249 bytes |
コンパイル時間 | 308 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 818,036 KB |
最終ジャッジ日時 | 2024-10-07 17:50:11 |
合計ジャッジ時間 | 9,124 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | MLE * 1 -- * 18 |
ソースコード
first = input() split_first = first.split() A = int(split_first[0]) B = int(split_first[1]) list = [] for i in range(0, B): list.append(i*3) for i in range(A, B): if i in list: print(i) elif "3" in str(i): print(i)