結果

問題 No.1232 2^x = x
ユーザー daikisuyamadaikisuyama
提出日時 2020-09-19 13:53:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 934 ms
コンパイル使用メモリ 87,212 KB
実行使用メモリ 76,472 KB
最終ジャッジ日時 2023-09-05 18:04:16
合計ジャッジ時間 1,627 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,524 KB
testcase_01 AC 110 ms
76,472 KB
testcase_02 AC 93 ms
75,904 KB
testcase_03 AC 95 ms
76,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for i in range(int(input())):
    n=int(input())
    print(2 if n==2 else (n-1)**2)
0