結果

問題 No.2603 Tone Correction
ユーザー titiatitia
提出日時 2024-01-13 01:03:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 445 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 42,992 KB
最終ジャッジ日時 2024-09-28 00:55:26
合計ジャッジ時間 10,564 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 29 ms
11,136 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 31 ms
11,136 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 30 ms
11,136 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 30 ms
11,136 KB
testcase_12 AC 36 ms
11,136 KB
testcase_13 AC 381 ms
40,928 KB
testcase_14 AC 378 ms
42,900 KB
testcase_15 AC 381 ms
42,872 KB
testcase_16 AC 379 ms
40,948 KB
testcase_17 AC 381 ms
42,992 KB
testcase_18 AC 376 ms
41,076 KB
testcase_19 AC 396 ms
40,924 KB
testcase_20 AC 385 ms
41,072 KB
testcase_21 AC 395 ms
42,864 KB
testcase_22 AC 380 ms
42,868 KB
testcase_23 AC 369 ms
35,340 KB
testcase_24 AC 374 ms
35,332 KB
testcase_25 AC 445 ms
35,216 KB
testcase_26 AC 365 ms
35,336 KB
testcase_27 AC 364 ms
35,272 KB
testcase_28 AC 365 ms
36,120 KB
testcase_29 AC 367 ms
35,332 KB
testcase_30 AC 371 ms
35,204 KB
testcase_31 AC 366 ms
35,216 KB
testcase_32 AC 365 ms
35,212 KB
testcase_33 AC 26 ms
10,624 KB
testcase_34 AC 307 ms
40,832 KB
testcase_35 AC 297 ms
40,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,mod=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

for i in range(N):
    A[i]=(A[i]-B[i])%mod

A=[0]+A+[0]

S=[]
for i in range(1,len(A)):
    S.append((A[i]-A[i-1]))

SUM=0
for s in S:
    if s>=0:
        SUM+=s

S.sort(reverse=True)

for i in range(len(S)):
    if S[i]>S[-1-i]+mod:
        SUM=SUM-S[i]+S[-1-i]+mod

print(SUM)
0