結果

問題 No.2841 Leaf Eater
ユーザー 👑 rin204rin204
提出日時 2024-08-09 23:24:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-08-09 23:24:15
合計ジャッジ時間 4,663 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 75 ms
75,648 KB
testcase_02 AC 74 ms
75,648 KB
testcase_03 AC 77 ms
75,904 KB
testcase_04 AC 77 ms
75,520 KB
testcase_05 AC 75 ms
75,776 KB
testcase_06 AC 394 ms
77,744 KB
testcase_07 AC 301 ms
77,440 KB
testcase_08 AC 270 ms
85,760 KB
testcase_09 AC 87 ms
107,776 KB
testcase_10 AC 92 ms
107,520 KB
testcase_11 AC 92 ms
107,264 KB
testcase_12 AC 90 ms
107,264 KB
testcase_13 AC 82 ms
82,816 KB
testcase_14 AC 79 ms
83,456 KB
testcase_15 AC 77 ms
83,200 KB
testcase_16 AC 80 ms
90,112 KB
testcase_17 AC 78 ms
89,884 KB
testcase_18 AC 69 ms
78,236 KB
testcase_19 AC 191 ms
77,568 KB
testcase_20 AC 192 ms
77,312 KB
testcase_21 AC 189 ms
77,440 KB
testcase_22 AC 179 ms
77,876 KB
testcase_23 AC 171 ms
77,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    P = list(map(int, input().split()))
    P = [p - 1 for p in P]
    deg = [0] * n
    for p in P:
        deg[p] += 1

    dist = [0] * n
    for i in range(1, n):
        dist[i] = dist[P[i - 1]] + 1
        if deg[i] >= 2:
            dist[i] = 0

    for i in range(n):
        if deg[i] == 0 and dist[i] % 2 == 1:
            return True
    return False


for _ in range(int(input())):
    if solve():
        print("First")
    else:
        print("Second")
0