結果
| 問題 | No.2241 Reach 1 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-03-11 15:57:32 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 94 ms / 2,000 ms |
| コード長 | 143 bytes |
| 記録 | |
| コンパイル時間 | 495 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 15,232 KB |
| 最終ジャッジ日時 | 2026-04-06 14:22:40 |
| 合計ジャッジ時間 | 4,733 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 35 |
ソースコード
n = int(input())
if n % 2 == 1:
print(2)
exit()
for i in range(1, 33):
if n == pow(2, i):
print(1)
exit()
print(3)