結果

問題 No.2481 Shiritori
ユーザー ntudantuda
提出日時 2023-09-24 01:33:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 89 bytes
コンパイル時間 1,100 ms
コンパイル使用メモリ 87,076 KB
実行使用メモリ 71,636 KB
最終ジャッジ日時 2023-09-24 01:33:37
合計ジャッジ時間 5,170 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,304 KB
testcase_01 AC 62 ms
71,204 KB
testcase_02 AC 62 ms
71,240 KB
testcase_03 AC 64 ms
71,228 KB
testcase_04 AC 61 ms
71,228 KB
testcase_05 AC 63 ms
71,304 KB
testcase_06 AC 62 ms
71,400 KB
testcase_07 AC 59 ms
71,420 KB
testcase_08 WA -
testcase_09 AC 61 ms
71,276 KB
testcase_10 WA -
testcase_11 AC 61 ms
71,204 KB
testcase_12 AC 60 ms
71,264 KB
testcase_13 AC 62 ms
71,220 KB
testcase_14 AC 69 ms
71,312 KB
testcase_15 AC 62 ms
71,244 KB
testcase_16 AC 63 ms
71,392 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 60 ms
71,200 KB
testcase_25 WA -
testcase_26 AC 61 ms
71,516 KB
testcase_27 WA -
testcase_28 AC 61 ms
71,260 KB
testcase_29 AC 69 ms
71,304 KB
testcase_30 AC 61 ms
71,480 KB
testcase_31 AC 59 ms
71,300 KB
testcase_32 AC 60 ms
71,196 KB
testcase_33 AC 61 ms
71,300 KB
testcase_34 AC 59 ms
71,152 KB
testcase_35 AC 60 ms
70,996 KB
testcase_36 AC 61 ms
71,000 KB
testcase_37 AC 62 ms
71,080 KB
testcase_38 WA -
testcase_39 AC 61 ms
71,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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