結果
問題 | No.91 赤、緑、青の石 |
ユーザー |
![]() |
提出日時 | 2020-04-18 16:54:09 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 286 bytes |
コンパイル時間 | 76 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-24 07:26:13 |
合計ジャッジ時間 | 1,977 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 28 |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() A=[int(i) for i in input().split()] A.sort() a,b,c=A ans=a b-=a c-=a if c-b>=2: d=min(b,(c-b)//2) ans+=d b-=d c-=3*d if b==0: ans+=c//5 else: d=b//4 ans+=2*d b-=4*d c-=4*d if b>=1 and c>=3: ans+=1 print(ans)