結果

問題 No.549 素材合成システム
ユーザー nanaenanae
提出日時 2017-04-04 10:23:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,728 KB
最終ジャッジ日時 2024-07-08 08:34:07
合計ジャッジ時間 4,646 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 107 ms
20,552 KB
testcase_08 AC 107 ms
20,500 KB
testcase_09 AC 104 ms
20,296 KB
testcase_10 AC 105 ms
20,300 KB
testcase_11 AC 103 ms
20,552 KB
testcase_12 AC 103 ms
20,424 KB
testcase_13 AC 108 ms
20,552 KB
testcase_14 AC 108 ms
20,424 KB
testcase_15 AC 111 ms
20,304 KB
testcase_16 AC 106 ms
20,560 KB
testcase_17 AC 68 ms
12,616 KB
testcase_18 AC 63 ms
12,288 KB
testcase_19 AC 68 ms
12,108 KB
testcase_20 AC 67 ms
12,268 KB
testcase_21 AC 79 ms
19,540 KB
testcase_22 AC 78 ms
18,828 KB
testcase_23 AC 85 ms
20,728 KB
testcase_24 AC 97 ms
19,736 KB
testcase_25 AC 93 ms
18,532 KB
testcase_26 AC 104 ms
20,328 KB
testcase_27 AC 93 ms
18,672 KB
testcase_28 AC 29 ms
10,624 KB
testcase_29 AC 29 ms
10,496 KB
testcase_30 AC 29 ms
10,624 KB
testcase_31 AC 72 ms
12,496 KB
testcase_32 AC 72 ms
12,620 KB
testcase_33 AC 72 ms
12,492 KB
testcase_34 AC 72 ms
12,492 KB
testcase_35 AC 87 ms
20,528 KB
testcase_36 AC 73 ms
12,488 KB
testcase_37 AC 73 ms
12,368 KB
testcase_38 AC 29 ms
10,496 KB
testcase_39 AC 30 ms
10,752 KB
testcase_40 AC 74 ms
16,396 KB
testcase_41 AC 48 ms
13,440 KB
testcase_42 AC 30 ms
10,880 KB
testcase_43 AC 41 ms
11,392 KB
testcase_44 AC 32 ms
10,624 KB
testcase_45 AC 45 ms
11,264 KB
testcase_46 AC 39 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input())
    x = [int(i) for i in input().split()]

    assert 2 <= N <= 10**5
    assert all(1 <= xi <= 10**4 for xi in x)

    # [x_i]を昇順にソート
    x.sort()

    # 経験値の小さいアンドロイドから順に一番大きい経験値のアンドロイドへ合成していく
    for i in range(N - 1):
        x[-1] += x[i] // 2

    ans = x[-1]

    print(ans)

if __name__ == '__main__':
    solve()
0