結果

問題 No.2169 To Arithmetic
ユーザー tailstails
提出日時 2022-12-21 02:23:09
言語 cLay
(20240714-1)
結果
TLE  
実行時間 -
コード長 189 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 173,220 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-11-18 02:32:12
合計ジャッジ時間 58,194 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,240 KB
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
11,008 KB
testcase_04 AC 6 ms
10,496 KB
testcase_05 AC 8 ms
10,368 KB
testcase_06 AC 10 ms
10,496 KB
testcase_07 AC 7 ms
11,008 KB
testcase_08 AC 3 ms
10,368 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,535 ms
10,880 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,297 ms
10,624 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@q,@a[n];
rep(i,n)a[i]=a[i+1]-a[i];
rep(q){
	ll@d,x=0,y=0;
	rep(i,n-1){
		ll e=d-a[i];
		if(e>=0){
			x+=e;
			y+=e;
		}else{
			ll f=max(0,-e-y);
			x+=f;
			y+=f+e;
		}
	}
	wt(x);
}
0