結果
問題 |
No.3157 Nabeatsu
|
ユーザー |
|
提出日時 | 2025-05-26 09:59:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 134 bytes |
コンパイル時間 | 896 ms |
コンパイル使用メモリ | 12,160 KB |
実行使用メモリ | 10,368 KB |
最終ジャッジ日時 | 2025-05-26 09:59:47 |
合計ジャッジ時間 | 6,453 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 WA * 5 TLE * 1 -- * 34 |
ソースコード
n = int(input()) for i in range(n-1, 0, -1): if i % 3 != 0: if "3" not in str(i): print(i) break