結果
問題 |
No.91 赤、緑、青の石
|
ユーザー |
![]() |
提出日時 | 2015-10-28 13:25:37 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 2,051 ms / 5,000 ms |
コード長 | 330 bytes |
コンパイル時間 | 107 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-24 06:52:20 |
合計ジャッジ時間 | 21,707 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 28 |
ソースコード
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)