結果
問題 | No.207 世界のなんとか |
ユーザー |
|
提出日時 | 2018-10-01 06:06:19 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 204 bytes |
コンパイル時間 | 128 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-12 09:26:56 |
合計ジャッジ時間 | 1,592 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
A,B=map(int,input().split())for i in range(A,B+1):d=[int(x) for x in list(str(i))]s=len(d)for p in range(0,s):if d[p]==3 or i%3==0:print(i)break