結果

問題 No.1219 Mancala Combo
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-09-04 23:17:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 643 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,480 KB
最終ジャッジ日時 2024-11-26 21:00:41
合計ジャッジ時間 3,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 26 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 27 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 26 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 26 ms
10,752 KB
testcase_12 WA -
testcase_13 AC 27 ms
10,752 KB
testcase_14 WA -
testcase_15 AC 27 ms
10,624 KB
testcase_16 WA -
testcase_17 AC 137 ms
21,040 KB
testcase_18 WA -
testcase_19 AC 120 ms
20,052 KB
testcase_20 WA -
testcase_21 AC 111 ms
18,628 KB
testcase_22 WA -
testcase_23 AC 157 ms
23,348 KB
testcase_24 WA -
testcase_25 AC 117 ms
19,668 KB
testcase_26 WA -
testcase_27 AC 179 ms
25,184 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
for i in range(N):
    if A[i] > 0:
        R = i
A = A[:R+1]
N = len(A)
if N==1:
    if A[0]>1:
        print("No")
        exit()
    else:
        print("Yes")
else:        
    if A[1]>2:
        print("No")
        exit()
    else:
        is_ok = [0 for i in range(N)]
        for i in range(N-1):
            if i==0:
                is_ok[i] = is_ok[i+1] = 1
            else:
                if A[i] +2 == A[i+1] and A[i]<=i+1:
                    is_ok[i] = is_ok[i+1] = 1
        if sum(is_ok) == N:
            print("Yes")
        else:
            print("No")
                
0