結果

問題 No.91 赤、緑、青の石
ユーザー nohakai3nohakai3
提出日時 2022-11-03 10:41:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 372 ms / 5,000 ms
コード長 133 bytes
コンパイル時間 1,566 ms
コンパイル使用メモリ 86,668 KB
実行使用メモリ 76,156 KB
最終ジャッジ日時 2023-09-24 20:18:03
合計ジャッジ時間 7,415 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
75,872 KB
testcase_01 AC 215 ms
75,976 KB
testcase_02 AC 155 ms
75,864 KB
testcase_03 AC 224 ms
75,868 KB
testcase_04 AC 148 ms
75,952 KB
testcase_05 AC 249 ms
75,960 KB
testcase_06 AC 125 ms
75,864 KB
testcase_07 AC 73 ms
71,200 KB
testcase_08 AC 71 ms
71,304 KB
testcase_09 AC 70 ms
71,220 KB
testcase_10 AC 70 ms
71,016 KB
testcase_11 AC 125 ms
75,972 KB
testcase_12 AC 243 ms
76,156 KB
testcase_13 AC 270 ms
75,852 KB
testcase_14 AC 196 ms
76,016 KB
testcase_15 AC 280 ms
75,832 KB
testcase_16 AC 72 ms
71,184 KB
testcase_17 AC 71 ms
71,080 KB
testcase_18 AC 72 ms
71,180 KB
testcase_19 AC 72 ms
71,020 KB
testcase_20 AC 71 ms
71,128 KB
testcase_21 AC 71 ms
71,224 KB
testcase_22 AC 70 ms
71,136 KB
testcase_23 AC 71 ms
71,128 KB
testcase_24 AC 71 ms
71,188 KB
testcase_25 AC 372 ms
75,868 KB
testcase_26 AC 353 ms
76,056 KB
testcase_27 AC 72 ms
71,188 KB
testcase_28 AC 99 ms
75,952 KB
testcase_29 AC 126 ms
75,900 KB
testcase_30 AC 261 ms
75,832 KB
testcase_31 AC 341 ms
76,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,z=map(int,input().split())
l=[x,y,z]
while 1:
    l.sort()
    if l[0]+3>l[2]:
        break
    l[0]+=1
    l[2]-=2

print(l[0])
0