結果

問題 No.2481 Shiritori
ユーザー 👑 H20H20
提出日時 2023-09-23 23:15:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 112 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 87,076 KB
実行使用メモリ 71,660 KB
最終ジャッジ日時 2023-09-23 23:15:49
合計ジャッジ時間 5,083 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,268 KB
testcase_01 AC 74 ms
71,392 KB
testcase_02 AC 76 ms
71,328 KB
testcase_03 AC 75 ms
71,332 KB
testcase_04 AC 75 ms
71,448 KB
testcase_05 AC 80 ms
71,076 KB
testcase_06 AC 75 ms
71,300 KB
testcase_07 AC 75 ms
71,312 KB
testcase_08 AC 75 ms
71,296 KB
testcase_09 AC 74 ms
71,224 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 76 ms
71,168 KB
testcase_13 AC 76 ms
71,284 KB
testcase_14 AC 74 ms
71,544 KB
testcase_15 AC 74 ms
71,252 KB
testcase_16 AC 74 ms
71,312 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 74 ms
71,328 KB
testcase_23 AC 74 ms
71,484 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 77 ms
71,364 KB
testcase_27 AC 75 ms
71,124 KB
testcase_28 AC 74 ms
71,268 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 74 ms
71,268 KB
testcase_32 WA -
testcase_33 AC 76 ms
71,420 KB
testcase_34 WA -
testcase_35 AC 73 ms
71,276 KB
testcase_36 AC 74 ms
71,076 KB
testcase_37 WA -
testcase_38 AC 75 ms
71,448 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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