結果

問題 No.37 遊園地のアトラクション
ユーザー 6soukiti296soukiti29
提出日時 2017-07-27 22:09:49
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 668 bytes
コンパイル時間 3,353 ms
コンパイル使用メモリ 65,920 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-30 01:50:26
合計ジャッジ時間 5,103 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 15 ms
5,376 KB
testcase_03 AC 29 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 16 ms
5,376 KB
testcase_06 AC 15 ms
5,376 KB
testcase_07 AC 82 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 57 ms
5,376 KB
testcase_11 AC 69 ms
5,376 KB
testcase_12 AC 17 ms
5,376 KB
testcase_13 AC 25 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 39 ms
5,376 KB
testcase_17 AC 33 ms
5,376 KB
testcase_18 AC 77 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 28 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 130 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 11 ms
5,376 KB
testcase_28 WA -
testcase_29 AC 7 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'math' [UnusedImport]

ソースコード

diff #

import sequtils,strutils,math
type
    item = tuple[c : int, v : int]
var
    T = stdin.readline.parseInt
    N = stdin.readline.parseInt
    C = stdin.readline.split.map(parseInt)
    V = stdin.readline.split.map(parseInt)
    dp : array[16,array[10001,int]]
    c,v,v2 : int
    
for n in 0..<N:
    c = C[n]
    v = V[n]
    v2 = v
    var items = newSeq[item](0)
    items.add((c,v))
    while v2 > 1:
        v2 = v2 div 2
        v += v2
        c += C[n]
        items.add((c,v))
    for i in 0..T:
        for t in items:
            if t.c + i <= T:
                dp[n + 1][i + t.c] = max(@[dp[n + 1][i + t.c], dp[n][i] + t.v, dp[n][i + t.c]])
echo dp[N][T]
0