結果
問題 |
No.207 世界のなんとか
|
ユーザー |
|
提出日時 | 2016-08-01 11:33:50 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 5,000 ms |
コード長 | 249 bytes |
コンパイル時間 | 83 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-06 21:37:54 |
合計ジャッジ時間 | 1,441 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
a,b=(int(i) for i in input().split()) list=[] n=0 while a+n<=b: list.append(a+n) n=n+1 for i in range(len(list)): if list[i]%3==0: print(list[i]) elif str(list[i]).find("3")>=0: print(list[i]) i=i+1