結果
問題 | No.207 世界のなんとか |
ユーザー |
|
提出日時 | 2022-03-04 22:46:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 191 bytes |
コンパイル時間 | 70 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-18 21:18:57 |
合計ジャッジ時間 | 1,174 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 2 WA * 17 |
ソースコード
A,B=map(int,input().split()) for i in range(A,B): n=list(str(i)) num=[int(j) for j in n] for j in range(len(num)): if sum(num)%3==0 or num[j] == 3: print(i)