結果

問題 No.2481 Shiritori
ユーザー ntudantuda
提出日時 2023-09-24 01:35:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 91 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 53,972 KB
最終ジャッジ日時 2024-07-17 01:32:10
合計ジャッジ時間 3,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,104 KB
testcase_01 AC 38 ms
51,868 KB
testcase_02 AC 41 ms
51,832 KB
testcase_03 AC 39 ms
52,648 KB
testcase_04 AC 39 ms
51,444 KB
testcase_05 AC 39 ms
52,472 KB
testcase_06 AC 39 ms
52,448 KB
testcase_07 AC 39 ms
52,880 KB
testcase_08 WA -
testcase_09 AC 40 ms
52,808 KB
testcase_10 WA -
testcase_11 AC 39 ms
53,024 KB
testcase_12 AC 40 ms
51,640 KB
testcase_13 AC 40 ms
51,988 KB
testcase_14 AC 39 ms
52,520 KB
testcase_15 AC 38 ms
52,104 KB
testcase_16 AC 40 ms
51,820 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 50 ms
52,232 KB
testcase_25 WA -
testcase_26 AC 46 ms
52,300 KB
testcase_27 WA -
testcase_28 AC 46 ms
51,704 KB
testcase_29 AC 47 ms
51,948 KB
testcase_30 AC 50 ms
53,052 KB
testcase_31 AC 47 ms
52,448 KB
testcase_32 AC 47 ms
51,752 KB
testcase_33 AC 48 ms
52,004 KB
testcase_34 AC 49 ms
52,692 KB
testcase_35 AC 47 ms
52,848 KB
testcase_36 AC 42 ms
51,748 KB
testcase_37 AC 40 ms
52,108 KB
testcase_38 WA -
testcase_39 AC 39 ms
52,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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