結果

問題 No.2481 Shiritori
ユーザー mymelochanmymelochan
提出日時 2023-09-22 21:47:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 55,936 KB
最終ジャッジ日時 2024-07-08 12:32:00
合計ジャッジ時間 2,927 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,784 KB
testcase_01 AC 43 ms
55,712 KB
testcase_02 AC 42 ms
55,684 KB
testcase_03 AC 43 ms
54,508 KB
testcase_04 AC 42 ms
54,868 KB
testcase_05 AC 42 ms
55,380 KB
testcase_06 AC 42 ms
54,780 KB
testcase_07 AC 44 ms
54,056 KB
testcase_08 AC 43 ms
54,456 KB
testcase_09 AC 43 ms
55,588 KB
testcase_10 AC 41 ms
54,832 KB
testcase_11 AC 42 ms
55,188 KB
testcase_12 AC 43 ms
54,304 KB
testcase_13 AC 43 ms
55,688 KB
testcase_14 AC 40 ms
54,588 KB
testcase_15 AC 41 ms
55,916 KB
testcase_16 AC 41 ms
54,796 KB
testcase_17 AC 41 ms
55,708 KB
testcase_18 AC 42 ms
55,540 KB
testcase_19 AC 42 ms
54,740 KB
testcase_20 AC 42 ms
55,112 KB
testcase_21 AC 41 ms
55,656 KB
testcase_22 AC 41 ms
54,896 KB
testcase_23 AC 42 ms
55,636 KB
testcase_24 AC 42 ms
54,436 KB
testcase_25 AC 42 ms
54,248 KB
testcase_26 AC 40 ms
55,728 KB
testcase_27 AC 40 ms
55,624 KB
testcase_28 AC 43 ms
54,676 KB
testcase_29 AC 42 ms
54,868 KB
testcase_30 AC 43 ms
55,052 KB
testcase_31 AC 42 ms
55,916 KB
testcase_32 AC 43 ms
54,896 KB
testcase_33 AC 46 ms
55,044 KB
testcase_34 AC 45 ms
55,776 KB
testcase_35 AC 42 ms
55,308 KB
testcase_36 AC 43 ms
55,576 KB
testcase_37 AC 43 ms
55,936 KB
testcase_38 AC 43 ms
55,172 KB
testcase_39 AC 43 ms
54,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
#############################################################

N,M = lmin()
if M <= 2:
    print("First")
    exit()
if N%2 == 0:
    print("Second")
else:
    print("First")
0