結果
問題 | No.2566 美しい整数列 |
ユーザー | 21kazu13 |
提出日時 | 2023-12-04 15:19:48 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 281 ms / 2,000 ms |
コード長 | 1,276 bytes |
コンパイル時間 | 562 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 160,684 KB |
最終ジャッジ日時 | 2024-09-26 23:01:58 |
合計ジャッジ時間 | 7,435 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
64,640 KB |
testcase_01 | AC | 63 ms
64,768 KB |
testcase_02 | AC | 60 ms
64,640 KB |
testcase_03 | AC | 61 ms
64,640 KB |
testcase_04 | AC | 281 ms
160,680 KB |
testcase_05 | AC | 235 ms
160,684 KB |
testcase_06 | AC | 201 ms
160,364 KB |
testcase_07 | AC | 193 ms
160,152 KB |
testcase_08 | AC | 190 ms
160,536 KB |
testcase_09 | AC | 192 ms
160,272 KB |
testcase_10 | AC | 192 ms
160,536 KB |
testcase_11 | AC | 205 ms
160,264 KB |
testcase_12 | AC | 207 ms
159,504 KB |
testcase_13 | AC | 207 ms
160,284 KB |
testcase_14 | AC | 201 ms
160,284 KB |
testcase_15 | AC | 206 ms
159,572 KB |
testcase_16 | AC | 216 ms
155,496 KB |
testcase_17 | AC | 219 ms
157,456 KB |
testcase_18 | AC | 217 ms
158,280 KB |
testcase_19 | AC | 185 ms
144,580 KB |
testcase_20 | AC | 216 ms
154,032 KB |
testcase_21 | AC | 222 ms
155,460 KB |
testcase_22 | AC | 169 ms
133,156 KB |
testcase_23 | AC | 197 ms
148,256 KB |
ソースコード
#!/usr/bin/env python3 import sys from bisect import bisect_left, bisect_right, insort_left, insort_right # type: ignore from collections import Counter, defaultdict, deque # type: ignore from math import gcd, sqrt, ceil, factorial # type: ignore from heapq import heapify, heappop, heappush, heappushpop, heapreplace, merge # type: ignore from itertools import accumulate, combinations, permutations, product # type: ignore from string import ascii_lowercase, ascii_uppercase # type: ignore def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def I(): return int(sys.stdin.buffer.readline()) def LS(): return sys.stdin.buffer.readline().rstrip().decode("utf-8").split() def S(): return sys.stdin.buffer.readline().rstrip().decode("utf-8") def IR(n): return [I() for _ in range(n)] def LIR(n): return [LI() for _ in range(n)] def SR(n): return [S() for _ in range(n)] def LSR(n): return [LS() for _ in range(n)] def SRL(n): return [list(S()) for _ in range(n)] N,M = LI() A = LI() tmp = LI()*((N+M-1)//M) B = tmp[:N-1] acc = list(accumulate(B,initial=0)) C = LI() sumc = sum(C) d = defaultdict(int) for i in range(N): a0 = A[i]-acc[i] d[a0] += C[i] ans = 10**18 for k,v in d.items(): ans = min( ans, sumc-v ) print(ans)