結果

問題 No.2481 Shiritori
ユーザー shobonvipshobonvip
提出日時 2023-09-22 21:44:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 185 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 53,752 KB
最終ジャッジ日時 2024-07-08 12:28:51
合計ジャッジ時間 2,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,520 KB
testcase_01 AC 33 ms
52,804 KB
testcase_02 AC 32 ms
52,748 KB
testcase_03 AC 33 ms
52,284 KB
testcase_04 AC 34 ms
53,572 KB
testcase_05 AC 35 ms
53,492 KB
testcase_06 AC 32 ms
52,788 KB
testcase_07 AC 35 ms
53,752 KB
testcase_08 AC 34 ms
53,288 KB
testcase_09 AC 33 ms
52,304 KB
testcase_10 AC 33 ms
52,796 KB
testcase_11 AC 32 ms
52,988 KB
testcase_12 AC 33 ms
52,268 KB
testcase_13 AC 32 ms
52,540 KB
testcase_14 AC 33 ms
52,592 KB
testcase_15 AC 34 ms
52,224 KB
testcase_16 AC 32 ms
52,516 KB
testcase_17 AC 32 ms
52,608 KB
testcase_18 AC 35 ms
52,272 KB
testcase_19 AC 36 ms
52,816 KB
testcase_20 AC 34 ms
52,068 KB
testcase_21 AC 34 ms
52,532 KB
testcase_22 AC 35 ms
52,164 KB
testcase_23 AC 33 ms
53,256 KB
testcase_24 AC 32 ms
52,964 KB
testcase_25 WA -
testcase_26 AC 33 ms
52,332 KB
testcase_27 AC 31 ms
51,760 KB
testcase_28 AC 34 ms
52,468 KB
testcase_29 AC 32 ms
52,772 KB
testcase_30 AC 32 ms
53,368 KB
testcase_31 AC 34 ms
52,532 KB
testcase_32 AC 33 ms
52,484 KB
testcase_33 AC 35 ms
52,884 KB
testcase_34 AC 35 ms
52,276 KB
testcase_35 AC 35 ms
51,880 KB
testcase_36 AC 35 ms
53,432 KB
testcase_37 AC 34 ms
52,508 KB
testcase_38 AC 35 ms
52,124 KB
testcase_39 AC 36 ms
52,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int,input().split())

if m == 2:
	print("First")
elif m == 1:
	print("First")
elif n == 1:
	print("First")
else:
	if n * m % 2 == 1:
		print("First")
	else:
		print("Second")
0