結果
| 問題 | No.91 赤、緑、青の石 |
| コンテスト | |
| ユーザー |
matsu7874
|
| 提出日時 | 2015-10-28 13:25:37 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 2,222 ms / 5,000 ms |
| コード長 | 330 bytes |
| 記録 | |
| コンパイル時間 | 104 ms |
| コンパイル使用メモリ | 12,160 KB |
| 実行使用メモリ | 10,368 KB |
| 最終ジャッジ日時 | 2025-12-07 12:23:59 |
| 合計ジャッジ時間 | 23,159 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 29 |
ソースコード
s = list(map(int, input().split()))
s.sort()
total = s[0]
for i in range(3):
s[i] -= total
while s[1] > 0 and s[2] > 0 and (s[1] > 2 or s[2] > 2):
if s[1] > s[2]:
total += 1
s[1] -= 3
s[2] -= 1
else:
total += 1
s[1] -= 1
s[2] -= 3
s.sort()
total += s[2]//5
print(total)
matsu7874