結果
問題 |
No.207 世界のなんとか
|
ユーザー |
|
提出日時 | 2018-01-11 11:39:44 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 249 bytes |
コンパイル時間 | 87 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-12-23 17:18:10 |
合計ジャッジ時間 | 1,305 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 19 |
ソースコード
import math a,b = map(str, input().split()) x = 10 t = 10 for i in range(a, b): if i % 3 == 0: print(i) while x < 1000000000: if math.floor(i / x) == 3: print(i) x = x * 10 while t < 1000000000: if i % t == 3: print(i) t = t * 10