結果
問題 | No.1219 Mancala Combo |
ユーザー | buey_t |
提出日時 | 2023-03-19 12:21:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,496 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 82,496 KB |
実行使用メモリ | 119,560 KB |
最終ジャッジ日時 | 2024-09-18 13:43:28 |
合計ジャッジ時間 | 5,737 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
85,268 KB |
testcase_01 | AC | 123 ms
85,300 KB |
testcase_02 | AC | 119 ms
85,356 KB |
testcase_03 | AC | 127 ms
85,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 120 ms
84,864 KB |
testcase_06 | WA | - |
testcase_07 | AC | 124 ms
85,120 KB |
testcase_08 | WA | - |
testcase_09 | AC | 120 ms
85,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 123 ms
85,248 KB |
testcase_12 | WA | - |
testcase_13 | AC | 122 ms
85,120 KB |
testcase_14 | AC | 123 ms
85,120 KB |
testcase_15 | AC | 131 ms
84,996 KB |
testcase_16 | WA | - |
testcase_17 | AC | 156 ms
109,696 KB |
testcase_18 | WA | - |
testcase_19 | AC | 150 ms
107,008 KB |
testcase_20 | WA | - |
testcase_21 | AC | 152 ms
104,704 KB |
testcase_22 | WA | - |
testcase_23 | AC | 158 ms
115,200 KB |
testcase_24 | WA | - |
testcase_25 | AC | 156 ms
107,100 KB |
testcase_26 | WA | - |
testcase_27 | AC | 162 ms
118,936 KB |
testcase_28 | WA | - |
ソースコード
def main(): try: import pypyjit pypyjit.set_param('max_unroll_recursion=-1') except: pass try: import sys sys.setrecursionlimit(10**7) except: pass from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum from heapq import heapify, heappop, heappush from bisect import bisect_left, bisect_right from copy import deepcopy import copy import random from collections import deque,Counter,defaultdict from itertools import permutations,combinations from decimal import Decimal,ROUND_HALF_UP #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP) from functools import lru_cache, reduce #@lru_cache(maxsize=None) from operator import add,sub,mul,xor,and_,or_,itemgetter INF = 10**18 mod1 = 10**9+7 mod2 = 998244353 #DecimalならPython ''' ''' N = int(input()) A = list(map(int, input().split())) f = True end = N for i in reversed(range(1,N+1)): if A[i-1] == 0 and f: end = i-1 continue if (A[i-1]+end-i)%i != 0: print('No') exit() f = False print('Yes') if __name__ == '__main__': main()