結果

問題 No.91 赤、緑、青の石
ユーザー masumasumath1masumasumath1
提出日時 2020-01-04 16:05:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-02 08:16:54
合計ジャッジ時間 20,011 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,284 ms
10,752 KB
testcase_01 AC 843 ms
10,752 KB
testcase_02 AC 536 ms
10,752 KB
testcase_03 AC 1,024 ms
10,624 KB
testcase_04 AC 494 ms
10,752 KB
testcase_05 AC 1,171 ms
10,624 KB
testcase_06 AC 238 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 WA -
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 335 ms
10,752 KB
testcase_12 AC 1,052 ms
10,752 KB
testcase_13 AC 1,161 ms
10,752 KB
testcase_14 AC 760 ms
10,752 KB
testcase_15 AC 1,253 ms
10,624 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 25 ms
10,752 KB
testcase_25 AC 1,952 ms
10,880 KB
testcase_26 AC 1,833 ms
10,752 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 107 ms
10,752 KB
testcase_29 AC 206 ms
10,752 KB
testcase_30 AC 1,278 ms
10,752 KB
testcase_31 AC 1,737 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def func(n):
    while 1:
        if A[2] >= 3 and A[1] >= 1:
            A[2] -= 2
            A[0] += 1
            A.sort()
            n = makeNeck(n)
        elif A[2] >= 5:
            A[2] -= 4
            A[1] += 1
            A[0] += 1
            A.sort()
            n = makeNeck(n)
        else:
            break
    return n

def makeNeck(n):
    A[0] -= 1
    A[1] -= 1
    A[2] -= 1
    return n+1

A = list(map(int,input().split()))
A.sort()
ans = min(A)
if ans > 0:
    A[0] -= ans
    A[1] -= ans
    A[2] -= ans
else:
    print(0)
    exit()
print(func(ans))
0