結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー 👑 p-adicp-adic
提出日時 2023-06-26 09:00:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 942 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-03 02:44:47
合計ジャッジ時間 20,261 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 864 ms
10,496 KB
testcase_08 AC 942 ms
10,624 KB
testcase_09 AC 874 ms
10,496 KB
testcase_10 AC 875 ms
10,752 KB
testcase_11 AC 854 ms
10,496 KB
testcase_12 AC 458 ms
10,752 KB
testcase_13 AC 468 ms
10,752 KB
testcase_14 AC 455 ms
10,624 KB
testcase_15 AC 925 ms
10,624 KB
testcase_16 AC 912 ms
10,624 KB
testcase_17 AC 927 ms
10,624 KB
testcase_18 AC 925 ms
10,624 KB
testcase_19 AC 923 ms
10,752 KB
testcase_20 AC 929 ms
10,752 KB
testcase_21 AC 936 ms
10,624 KB
testcase_22 AC 924 ms
10,624 KB
testcase_23 AC 388 ms
10,752 KB
testcase_24 AC 473 ms
10,624 KB
testcase_25 AC 550 ms
10,624 KB
testcase_26 AC 235 ms
10,624 KB
testcase_27 AC 98 ms
10,752 KB
testcase_28 AC 778 ms
10,624 KB
testcase_29 AC 706 ms
10,752 KB
testcase_30 AC 124 ms
10,624 KB
testcase_31 AC 218 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K=-1
a=0
while K:
	i,j,v=map(int,input().split())
	if K<0:H,W,K=i,j,v
	else:
		l,r,K=i-j,i+j-W-1,K-1
		a+=(i*i-((l>0)*(l+1)*l+(r>0)*(r+1)*r)//2)*v
print(a%998244353)
0