結果
| 問題 | No.1232 2^x = x |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-18 21:31:43 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 57 ms / 2,000 ms |
| コード長 | 169 bytes |
| コンパイル時間 | 301 ms |
| コンパイル使用メモリ | 81,968 KB |
| 実行使用メモリ | 67,008 KB |
| 最終ジャッジ日時 | 2024-06-22 09:01:35 |
| 合計ジャッジ時間 | 1,472 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 3 |
ソースコード
for _ in range(int(input())):
p = int(input())
if p==2:
print(2)
else:
print(p**2-2*p+2)
assert(pow(2,p**2-2*p+2,p)==(p**2-2*p+2)%p)