結果

問題 No.2481 Shiritori
ユーザー minimumminimum
提出日時 2023-09-22 21:35:46
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 103 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 66,400 KB
最終ジャッジ日時 2024-07-08 12:18:50
合計ジャッジ時間 2,926 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,272 KB
testcase_01 AC 36 ms
52,448 KB
testcase_02 AC 34 ms
52,924 KB
testcase_03 AC 35 ms
52,068 KB
testcase_04 AC 34 ms
52,240 KB
testcase_05 AC 32 ms
51,936 KB
testcase_06 RE -
testcase_07 AC 31 ms
53,060 KB
testcase_08 AC 32 ms
52,828 KB
testcase_09 AC 32 ms
52,924 KB
testcase_10 AC 33 ms
53,416 KB
testcase_11 AC 33 ms
52,804 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 34 ms
52,152 KB
testcase_15 AC 31 ms
52,096 KB
testcase_16 RE -
testcase_17 AC 33 ms
52,084 KB
testcase_18 AC 33 ms
52,684 KB
testcase_19 AC 34 ms
52,196 KB
testcase_20 AC 34 ms
52,004 KB
testcase_21 AC 33 ms
52,204 KB
testcase_22 AC 35 ms
53,112 KB
testcase_23 AC 36 ms
52,512 KB
testcase_24 AC 34 ms
51,876 KB
testcase_25 AC 33 ms
52,244 KB
testcase_26 AC 33 ms
52,612 KB
testcase_27 AC 32 ms
51,980 KB
testcase_28 AC 30 ms
51,676 KB
testcase_29 AC 33 ms
52,820 KB
testcase_30 AC 34 ms
52,000 KB
testcase_31 AC 33 ms
53,152 KB
testcase_32 AC 33 ms
52,140 KB
testcase_33 AC 32 ms
52,576 KB
testcase_34 AC 33 ms
52,424 KB
testcase_35 AC 32 ms
52,756 KB
testcase_36 AC 31 ms
53,612 KB
testcase_37 AC 32 ms
52,208 KB
testcase_38 AC 33 ms
52,116 KB
testcase_39 AC 32 ms
51,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
if pow(N, M - 2, 2) == 1:
    print("First")
else:
    print("Second")
0