結果

問題 No.91 赤、緑、青の石
ユーザー titiatitia
提出日時 2022-04-17 02:08:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 775 ms / 5,000 ms
コード長 283 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-12-26 01:54:04
合計ジャッジ時間 10,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 542 ms
74,880 KB
testcase_01 AC 377 ms
75,392 KB
testcase_02 AC 261 ms
74,880 KB
testcase_03 AC 423 ms
75,136 KB
testcase_04 AC 236 ms
75,136 KB
testcase_05 AC 489 ms
74,880 KB
testcase_06 AC 169 ms
75,392 KB
testcase_07 AC 47 ms
51,584 KB
testcase_08 AC 45 ms
51,712 KB
testcase_09 AC 47 ms
51,456 KB
testcase_10 AC 48 ms
51,840 KB
testcase_11 AC 187 ms
74,880 KB
testcase_12 AC 461 ms
74,880 KB
testcase_13 AC 490 ms
75,008 KB
testcase_14 AC 352 ms
75,008 KB
testcase_15 AC 531 ms
74,752 KB
testcase_16 AC 47 ms
51,840 KB
testcase_17 AC 47 ms
51,456 KB
testcase_18 AC 49 ms
51,584 KB
testcase_19 AC 49 ms
51,968 KB
testcase_20 AC 51 ms
51,968 KB
testcase_21 AC 49 ms
51,584 KB
testcase_22 AC 50 ms
51,712 KB
testcase_23 AC 48 ms
51,456 KB
testcase_24 AC 49 ms
51,456 KB
testcase_25 AC 775 ms
74,880 KB
testcase_26 AC 728 ms
74,880 KB
testcase_27 AC 48 ms
51,712 KB
testcase_28 AC 113 ms
74,880 KB
testcase_29 AC 165 ms
75,136 KB
testcase_30 AC 533 ms
75,008 KB
testcase_31 AC 699 ms
75,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A=list(map(int,input().split()))
A.sort()
ANS=0

while True:
    A.sort()
    #print(A,ANS)

    if A[0]>0:
        ANS+=A[0]
        
        A[1]-=A[0]
        A[2]-=A[0]
        A[0]-=A[0]
    else:
        if A[2]<=1:
            break
        A[2]-=2
        A[0]+=1

print(ANS)
0