結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
71,400 KB
testcase_01 AC 63 ms
71,256 KB
testcase_02 AC 64 ms
71,180 KB
testcase_03 AC 61 ms
71,284 KB
testcase_04 AC 61 ms
71,400 KB
testcase_05 AC 59 ms
71,076 KB
testcase_06 AC 60 ms
71,472 KB
testcase_07 AC 61 ms
71,240 KB
testcase_08 WA -
testcase_09 AC 63 ms
70,936 KB
testcase_10 WA -
testcase_11 AC 61 ms
71,240 KB
testcase_12 AC 59 ms
71,196 KB
testcase_13 AC 59 ms
71,284 KB
testcase_14 AC 61 ms
71,092 KB
testcase_15 AC 60 ms
71,396 KB
testcase_16 AC 60 ms
71,204 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 69 ms
71,060 KB
testcase_25 WA -
testcase_26 AC 61 ms
71,084 KB
testcase_27 WA -
testcase_28 AC 59 ms
71,284 KB
testcase_29 AC 61 ms
71,296 KB
testcase_30 AC 60 ms
71,096 KB
testcase_31 AC 60 ms
71,096 KB
testcase_32 AC 62 ms
71,296 KB
testcase_33 AC 61 ms
71,276 KB
testcase_34 AC 61 ms
71,212 KB
testcase_35 AC 62 ms
71,396 KB
testcase_36 AC 61 ms
71,496 KB
testcase_37 AC 60 ms
71,180 KB
testcase_38 WA -
testcase_39 AC 70 ms
71,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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