結果

問題 No.920 あかあお
ユーザー toyuzukotoyuzuko
提出日時 2020-03-25 22:33:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 75,736 KB
最終ジャッジ日時 2024-06-10 11:54:10
合計ジャッジ時間 2,602 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 43 ms
60,528 KB
testcase_02 AC 44 ms
60,264 KB
testcase_03 AC 45 ms
59,808 KB
testcase_04 AC 62 ms
64,108 KB
testcase_05 AC 86 ms
73,308 KB
testcase_06 AC 39 ms
52,144 KB
testcase_07 AC 135 ms
75,736 KB
testcase_08 AC 367 ms
75,584 KB
testcase_09 AC 367 ms
75,648 KB
testcase_10 AC 38 ms
53,360 KB
testcase_11 AC 368 ms
75,388 KB
testcase_12 AC 45 ms
59,876 KB
testcase_13 AC 38 ms
52,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X, Y, Z = map(int, input().split())

res = 0

for i in range(2**Z):
    r = X
    b = Y
    for j in range(Z):
        if (i >> j) & 1:
            r += 1
        else:
            b += 1
    res = max(res, min(r, b))

print(res)
0