結果

問題 No.91 赤、緑、青の石
ユーザー nohakai3nohakai3
提出日時 2022-11-03 10:41:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 314 ms / 5,000 ms
コード長 133 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 75,212 KB
最終ジャッジ日時 2024-07-17 21:02:34
合計ジャッジ時間 5,109 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
74,980 KB
testcase_01 AC 165 ms
74,704 KB
testcase_02 AC 114 ms
74,844 KB
testcase_03 AC 173 ms
75,212 KB
testcase_04 AC 107 ms
74,720 KB
testcase_05 AC 202 ms
74,920 KB
testcase_06 AC 95 ms
74,704 KB
testcase_07 AC 34 ms
53,528 KB
testcase_08 AC 34 ms
53,368 KB
testcase_09 AC 34 ms
52,332 KB
testcase_10 AC 35 ms
52,632 KB
testcase_11 AC 86 ms
75,192 KB
testcase_12 AC 188 ms
75,088 KB
testcase_13 AC 208 ms
75,008 KB
testcase_14 AC 146 ms
75,124 KB
testcase_15 AC 218 ms
75,052 KB
testcase_16 AC 35 ms
52,896 KB
testcase_17 AC 36 ms
52,092 KB
testcase_18 AC 36 ms
52,280 KB
testcase_19 AC 35 ms
52,356 KB
testcase_20 AC 37 ms
53,416 KB
testcase_21 AC 33 ms
52,064 KB
testcase_22 AC 33 ms
51,680 KB
testcase_23 AC 33 ms
52,284 KB
testcase_24 AC 33 ms
53,212 KB
testcase_25 AC 314 ms
75,180 KB
testcase_26 AC 292 ms
74,788 KB
testcase_27 AC 35 ms
52,224 KB
testcase_28 AC 66 ms
74,708 KB
testcase_29 AC 91 ms
75,116 KB
testcase_30 AC 212 ms
75,048 KB
testcase_31 AC 280 ms
74,992 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