結果

問題 No.1219 Mancala Combo
ユーザー KeroruKeroru
提出日時 2020-09-04 22:33:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 128 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 110,860 KB
最終ジャッジ日時 2024-11-26 15:41:17
合計ジャッジ時間 2,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,804 KB
testcase_01 AC 38 ms
52,928 KB
testcase_02 WA -
testcase_03 AC 38 ms
52,696 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,344 KB
testcase_06 WA -
testcase_07 AC 39 ms
53,692 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,756 KB
testcase_10 WA -
testcase_11 AC 38 ms
52,372 KB
testcase_12 WA -
testcase_13 AC 37 ms
52,404 KB
testcase_14 AC 37 ms
53,160 KB
testcase_15 AC 38 ms
52,112 KB
testcase_16 WA -
testcase_17 AC 76 ms
93,928 KB
testcase_18 WA -
testcase_19 AC 73 ms
90,176 KB
testcase_20 WA -
testcase_21 AC 69 ms
86,428 KB
testcase_22 WA -
testcase_23 AC 85 ms
102,780 KB
testcase_24 WA -
testcase_25 AC 72 ms
89,168 KB
testcase_26 WA -
testcase_27 AC 90 ms
108,492 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a=map(int,open(0).read().split())
t=k=0
while a:
 c=a.pop()
 if c==0:0
 elif c+t==n:t+=1
 else:k=1
 n-=1
print('YNeos'[k::2])
0