結果
問題 | No.207 世界のなんとか |
ユーザー |
|
提出日時 | 2020-05-19 23:31:16 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 267 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-01 23:15:04 |
合計ジャッジ時間 | 1,320 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 19 |
ソースコード
A , B = map(int,input().split()) l = list(range(A, B+1)) ans = [] for w in l : if w%3 == 0 : ans.append(w) m = list(map(str,l)) for t in m : if '3' in t : u =int(t) ans.append(u) ans.sort() print(list(dict.fromkeys(ans)))