結果

問題 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
コンパイル時間 107 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,760 KB
最終ジャッジ日時 2024-05-05 03:37:01
合計ジャッジ時間 3,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 33 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 31 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 30 ms
10,624 KB
testcase_10 WA -
testcase_11 AC 31 ms
10,752 KB
testcase_12 WA -
testcase_13 AC 30 ms
10,752 KB
testcase_14 WA -
testcase_15 AC 30 ms
10,752 KB
testcase_16 WA -
testcase_17 AC 149 ms
21,296 KB
testcase_18 WA -
testcase_19 AC 134 ms
20,180 KB
testcase_20 WA -
testcase_21 AC 127 ms
18,880 KB
testcase_22 WA -
testcase_23 AC 176 ms
23,476 KB
testcase_24 WA -
testcase_25 AC 128 ms
19,816 KB
testcase_26 WA -
testcase_27 AC 195 ms
25,308 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