結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
10,496 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 WA -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 WA -
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