結果

問題 No.2492 Knapsack Problem?
ユーザー ゆうPゆうP
提出日時 2024-05-19 16:38:43
言語 Go
(1.22.1)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 12,900 ms
コンパイル使用メモリ 223,848 KB
実行使用メモリ 6,812 KB
最終ジャッジ日時 2024-05-19 16:38:57
合計ジャッジ時間 13,150 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 10 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// No.2492 Knapsack Problem?
package main

import "fmt"

func main() {
	var n, w int
	fmt.Scan(&n, &w)

	vv, ww := 0, 0
	ans := -1
	for i := 0; i < n; i++ {
		fmt.Scan(&vv, &ww)
		if ww <= w {
			ans = max(ans, vv)
		}
	}
	fmt.Println(ans)
}
0