結果

問題 No.2481 Shiritori
ユーザー ShirotsumeShirotsume
提出日時 2023-09-22 21:37:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 56,712 KB
最終ジャッジ日時 2024-07-08 12:21:25
合計ジャッジ時間 2,548 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,408 KB
testcase_01 AC 37 ms
55,720 KB
testcase_02 AC 38 ms
56,660 KB
testcase_03 AC 36 ms
55,568 KB
testcase_04 AC 36 ms
56,116 KB
testcase_05 AC 36 ms
56,212 KB
testcase_06 AC 37 ms
55,996 KB
testcase_07 AC 37 ms
56,648 KB
testcase_08 AC 38 ms
55,340 KB
testcase_09 AC 39 ms
54,832 KB
testcase_10 AC 38 ms
56,184 KB
testcase_11 AC 36 ms
55,140 KB
testcase_12 AC 36 ms
55,688 KB
testcase_13 AC 37 ms
55,412 KB
testcase_14 AC 38 ms
54,928 KB
testcase_15 AC 38 ms
55,328 KB
testcase_16 AC 38 ms
56,504 KB
testcase_17 AC 37 ms
55,460 KB
testcase_18 AC 37 ms
55,588 KB
testcase_19 AC 36 ms
55,572 KB
testcase_20 AC 38 ms
56,668 KB
testcase_21 AC 37 ms
56,712 KB
testcase_22 AC 36 ms
55,664 KB
testcase_23 AC 36 ms
55,372 KB
testcase_24 AC 37 ms
55,404 KB
testcase_25 AC 39 ms
56,684 KB
testcase_26 AC 38 ms
55,616 KB
testcase_27 AC 36 ms
55,948 KB
testcase_28 AC 37 ms
55,740 KB
testcase_29 AC 37 ms
55,784 KB
testcase_30 AC 37 ms
56,344 KB
testcase_31 AC 37 ms
56,596 KB
testcase_32 AC 40 ms
56,380 KB
testcase_33 AC 37 ms
55,256 KB
testcase_34 AC 38 ms
56,236 KB
testcase_35 AC 40 ms
56,320 KB
testcase_36 AC 41 ms
54,976 KB
testcase_37 AC 37 ms
55,664 KB
testcase_38 AC 38 ms
55,092 KB
testcase_39 AC 38 ms
56,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353


n, m = mi()

print('First' if m == 1 or pow(n, m - 2, 2) else 'Second')
0