結果

問題 No.2481 Shiritori
ユーザー H20H20
提出日時 2023-09-23 23:15:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 112 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 53,712 KB
最終ジャッジ日時 2024-07-16 23:01:16
合計ジャッジ時間 2,705 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,296 KB
testcase_01 AC 38 ms
52,280 KB
testcase_02 AC 43 ms
52,200 KB
testcase_03 AC 36 ms
52,148 KB
testcase_04 AC 34 ms
52,376 KB
testcase_05 AC 35 ms
51,876 KB
testcase_06 AC 35 ms
52,432 KB
testcase_07 AC 35 ms
53,228 KB
testcase_08 AC 35 ms
51,552 KB
testcase_09 AC 34 ms
52,424 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
52,368 KB
testcase_13 AC 36 ms
52,068 KB
testcase_14 AC 35 ms
52,532 KB
testcase_15 AC 36 ms
52,832 KB
testcase_16 AC 35 ms
52,684 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 34 ms
51,696 KB
testcase_23 AC 35 ms
52,072 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 36 ms
52,880 KB
testcase_27 AC 35 ms
52,740 KB
testcase_28 AC 34 ms
52,428 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 35 ms
52,136 KB
testcase_32 WA -
testcase_33 AC 37 ms
52,804 KB
testcase_34 WA -
testcase_35 AC 36 ms
52,248 KB
testcase_36 AC 36 ms
52,852 KB
testcase_37 WA -
testcase_38 AC 36 ms
52,244 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