結果

問題 No.2852 Yakitori Optimization Problem
ユーザー ID 21712ID 21712
提出日時 2024-11-04 21:39:17
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 332 bytes
コンパイル時間 10,776 ms
コンパイル使用メモリ 228,532 KB
実行使用メモリ 14,784 KB
最終ジャッジ日時 2024-11-04 21:39:39
合計ジャッジ時間 19,987 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,477 ms
14,784 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "sort"

func main() {
	var n,k int
	Scan(&n,&k)
	var x int64
	a :=make([]int,n)
	for i:=range a {
		Scan(&a[i])
		x+=int64(a[i])
	}
	for i:=range a {
		Scan(&a[i])
		x+=int64(a[i])
	}
	for i,v:=range a {
		Scan(&a[i])
		a[i]-=v
	}
	Ints(a)
	for _,v:=range a[k:] {
		x+=int64(v)
	}
	Println(x)
}
0