結果

問題 No.2011 Arbitrary Mod (Hidden)
ユーザー tassei903tassei903
提出日時 2022-07-16 05:06:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 540 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 60,288 KB
最終ジャッジ日時 2024-06-28 02:55:27
合計ジャッジ時間 5,748 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
58,240 KB
testcase_02 WA -
testcase_03 AC 40 ms
57,472 KB
testcase_04 WA -
testcase_05 AC 44 ms
57,472 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 41 ms
57,984 KB
testcase_10 AC 41 ms
57,728 KB
testcase_11 WA -
testcase_12 AC 40 ms
57,472 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 40 ms
57,472 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 40 ms
57,984 KB
testcase_19 AC 40 ms
57,344 KB
testcase_20 AC 40 ms
58,240 KB
testcase_21 WA -
testcase_22 AC 41 ms
57,472 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 40 ms
57,472 KB
testcase_28 AC 40 ms
57,472 KB
testcase_29 AC 41 ms
57,472 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 41 ms
57,472 KB
testcase_34 AC 40 ms
57,472 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 41 ms
57,728 KB
testcase_39 AC 41 ms
57,472 KB
testcase_40 AC 42 ms
57,600 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#####################################################################
n = ni()
M = 1<<24
print(M)
print(1)
f = pow(2,n,M//2)
for a in range(20,5001):
    if pow(a**2-398,f,M) != 1:
        print("!")
        while 1:
            print(1)
            continue
0