結果

問題 No.91 赤、緑、青の石
ユーザー dangodango
提出日時 2023-06-14 19:44:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 468 ms / 5,000 ms
コード長 127 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 86,608 KB
実行使用メモリ 76,392 KB
最終ジャッジ日時 2023-09-05 06:14:14
合計ジャッジ時間 8,055 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
75,968 KB
testcase_01 AC 256 ms
75,968 KB
testcase_02 AC 182 ms
76,204 KB
testcase_03 AC 271 ms
76,388 KB
testcase_04 AC 170 ms
76,364 KB
testcase_05 AC 303 ms
76,208 KB
testcase_06 AC 142 ms
76,288 KB
testcase_07 AC 72 ms
71,144 KB
testcase_08 AC 73 ms
70,840 KB
testcase_09 AC 73 ms
70,928 KB
testcase_10 AC 71 ms
70,968 KB
testcase_11 AC 144 ms
76,288 KB
testcase_12 AC 296 ms
76,296 KB
testcase_13 AC 323 ms
76,376 KB
testcase_14 AC 228 ms
76,212 KB
testcase_15 AC 332 ms
76,212 KB
testcase_16 AC 70 ms
70,972 KB
testcase_17 AC 70 ms
70,836 KB
testcase_18 AC 70 ms
71,192 KB
testcase_19 AC 71 ms
71,144 KB
testcase_20 AC 73 ms
70,720 KB
testcase_21 AC 71 ms
70,880 KB
testcase_22 AC 71 ms
71,232 KB
testcase_23 AC 71 ms
70,924 KB
testcase_24 AC 72 ms
70,988 KB
testcase_25 AC 468 ms
76,392 KB
testcase_26 AC 435 ms
76,304 KB
testcase_27 AC 71 ms
70,988 KB
testcase_28 AC 109 ms
76,292 KB
testcase_29 AC 145 ms
76,192 KB
testcase_30 AC 315 ms
76,296 KB
testcase_31 AC 414 ms
76,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = sorted(list(map(int,input().split())))
while L[-1] - L[0] > 1:
    L[-1] -= 2
    L[0] += 1
    L = sorted(L)
print(min(L))
0