結果
問題 | No.1232 2^x = x |
ユーザー | prd_xxx |
提出日時 | 2020-09-18 22:09:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 191 bytes |
コンパイル時間 | 134 ms |
コンパイル使用メモリ | 82,036 KB |
実行使用メモリ | 69,128 KB |
最終ジャッジ日時 | 2024-06-22 09:48:17 |
合計ジャッジ時間 | 3,840 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
59,556 KB |
testcase_01 | WA | - |
testcase_02 | TLE | - |
testcase_03 | -- | - |
ソースコード
N = int(input()) P = [int(input()) for i in range(N)] for p in P: a = 2 for i in range(1,p*2): if i%p==a: print(i) break a *= 2 a %= p