結果

問題 No.1219 Mancala Combo
ユーザー KeroruKeroru
提出日時 2020-09-04 22:25:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 139 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 109,820 KB
最終ジャッジ日時 2024-11-26 14:29:07
合計ジャッジ時間 2,852 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,352 KB
testcase_01 WA -
testcase_02 AC 38 ms
52,764 KB
testcase_03 AC 37 ms
53,216 KB
testcase_04 AC 38 ms
52,004 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,076 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,884 KB
testcase_09 WA -
testcase_10 AC 37 ms
53,552 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,348 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 38 ms
53,412 KB
testcase_16 AC 37 ms
52,620 KB
testcase_17 WA -
testcase_18 AC 75 ms
93,908 KB
testcase_19 WA -
testcase_20 AC 77 ms
97,508 KB
testcase_21 WA -
testcase_22 AC 71 ms
90,268 KB
testcase_23 WA -
testcase_24 AC 68 ms
86,620 KB
testcase_25 WA -
testcase_26 AC 74 ms
93,616 KB
testcase_27 WA -
testcase_28 AC 90 ms
109,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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