結果
問題 | No.1462 最弱WEAKER |
ユーザー |
![]() |
提出日時 | 2021-04-02 22:49:51 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 110 bytes |
コンパイル時間 | 650 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-12-23 20:52:28 |
合計ジャッジ時間 | 2,234 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 WA * 7 |
ソースコード
n = int(input()) for i in range(30): if 3 ** i + 1 == n: print("YES") exit() print("NO")