結果

問題 No.2481 Shiritori
ユーザー mymelochanmymelochan
提出日時 2023-09-22 21:47:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 1,158 ms
コンパイル使用メモリ 87,172 KB
実行使用メモリ 71,800 KB
最終ジャッジ日時 2023-09-22 21:47:53
合計ジャッジ時間 6,546 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
71,504 KB
testcase_01 AC 91 ms
71,760 KB
testcase_02 AC 94 ms
71,696 KB
testcase_03 AC 93 ms
71,668 KB
testcase_04 AC 94 ms
71,732 KB
testcase_05 AC 93 ms
71,536 KB
testcase_06 AC 93 ms
71,664 KB
testcase_07 AC 93 ms
71,532 KB
testcase_08 AC 92 ms
71,536 KB
testcase_09 AC 93 ms
71,704 KB
testcase_10 AC 92 ms
71,496 KB
testcase_11 AC 92 ms
71,676 KB
testcase_12 AC 95 ms
71,672 KB
testcase_13 AC 92 ms
71,508 KB
testcase_14 AC 92 ms
71,636 KB
testcase_15 AC 93 ms
71,352 KB
testcase_16 AC 92 ms
71,504 KB
testcase_17 AC 92 ms
71,508 KB
testcase_18 AC 93 ms
71,596 KB
testcase_19 AC 94 ms
71,664 KB
testcase_20 AC 93 ms
71,392 KB
testcase_21 AC 94 ms
71,500 KB
testcase_22 AC 95 ms
71,384 KB
testcase_23 AC 94 ms
71,756 KB
testcase_24 AC 92 ms
71,384 KB
testcase_25 AC 94 ms
71,692 KB
testcase_26 AC 92 ms
71,792 KB
testcase_27 AC 94 ms
71,756 KB
testcase_28 AC 94 ms
71,668 KB
testcase_29 AC 92 ms
71,596 KB
testcase_30 AC 92 ms
71,500 KB
testcase_31 AC 92 ms
71,800 KB
testcase_32 AC 94 ms
71,728 KB
testcase_33 AC 94 ms
71,600 KB
testcase_34 AC 92 ms
71,732 KB
testcase_35 AC 94 ms
71,604 KB
testcase_36 AC 92 ms
71,504 KB
testcase_37 AC 92 ms
71,564 KB
testcase_38 AC 93 ms
71,500 KB
testcase_39 AC 93 ms
71,756 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