結果

問題 No.1594 Three Classes
ユーザー Kiri8128Kiri8128
提出日時 2021-07-09 22:49:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 915 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-11-16 08:20:32
合計ジャッジ時間 2,520 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
75,392 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 42 ms
51,584 KB
testcase_03 AC 64 ms
67,328 KB
testcase_04 AC 113 ms
75,520 KB
testcase_05 AC 112 ms
75,776 KB
testcase_06 AC 48 ms
59,392 KB
testcase_07 AC 70 ms
67,584 KB
testcase_08 AC 108 ms
75,776 KB
testcase_09 AC 108 ms
75,648 KB
testcase_10 AC 106 ms
76,032 KB
testcase_11 AC 102 ms
75,776 KB
testcase_12 AC 104 ms
75,648 KB
testcase_13 AC 39 ms
51,584 KB
testcase_14 AC 67 ms
72,704 KB
testcase_15 AC 64 ms
71,808 KB
testcase_16 AC 68 ms
69,376 KB
testcase_17 AC 64 ms
66,304 KB
testcase_18 AC 37 ms
52,096 KB
testcase_19 AC 47 ms
61,184 KB
testcase_20 AC 59 ms
64,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# D
def chk(i):
    # NG のとき 1 を返す
    return 0

N = int(input())
E = [int(a) for a in input().split()]
K = N
Z = [0] * K
R = [0] * K
Z[0], R[0] = 0, 3 # 半開区間 [Start, End)
i = 0
cnt = 0 # Debug 用
while i >= 0:
    ng = 0
    while i < K - 1:
        i += 1
        Z[i] = 0 # Start
        R[i] = 3 # End
        if chk(i):
            ng = 1
            break
    
    if not ng:
        ### ここに処理を書く
        # if cnt < 30:
        #     print("Z =", cnt, Z)
        P = [0] * 3
        cnt += 1
        for i, z in enumerate(Z):
            P[z] += E[i]
        if P[0] == P[1] == P[2]:
            print("Yes")
            exit()
        ###
    
    Z[i] += 1
    while Z[i] >= R[i] or chk(i):
        if Z[i] < R[i]: Z[i] += 1
        while Z[i] >= R[i]:
            i -= 1
            if i < 0: break
            Z[i] += 1
        if i < 0: break
# print(cnt)
print("No")
0