結果
| 問題 | 
                            No.207 世界のなんとか
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2017-01-03 23:26:48 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 210 bytes | 
| コンパイル時間 | 92 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 10,880 KB | 
| 最終ジャッジ日時 | 2024-12-16 06:44:59 | 
| 合計ジャッジ時間 | 1,396 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 9 WA * 10 | 
ソースコード
a,b = map(int,input().split())
for x in range(a,b+1):
    digits = [int(x) for x in str(x)]
    if x % 3 == 0:
        print(x)
    else:
        for a in digits:
            if a == 3:
                print(x)