結果

問題 No.555 世界史のレポート
ユーザー 6soukiti296soukiti29
提出日時 2017-08-11 23:55:26
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 3,019 ms
コンパイル使用メモリ 68,276 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-12 14:04:00
合計ジャッジ時間 4,195 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 3 ms
4,380 KB
testcase_02 AC 3 ms
4,380 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 4 ms
4,376 KB
testcase_09 AC 3 ms
4,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 5 ms
4,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils,strutils,math
var
    N = stdin.readline.parseInt
    C,V : int
    ans = 2147483600
(C, V) = stdin.readline.split.map(parseInt)
for i in 1..50000:
    var cos, n, cnt, clip : int
    n = 1
    cnt = 1
    while n < N and cnt <= i:
        cnt += 1
        clip = n
        cos += C
        n += clip
        cos += V
    cos += ceil(max(N - n, 0) / clip).int * V
    ans = min(ans, cos)
echo ans
0