結果

問題 No.91 赤、緑、青の石
ユーザー holegumaholeguma
提出日時 2015-08-17 22:48:59
言語 Java
(openjdk 23)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 785 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 77,432 KB
実行使用メモリ 38,868 KB
最終ジャッジ日時 2024-06-24 06:50:59
合計ジャッジ時間 5,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
38,856 KB
testcase_01 AC 122 ms
38,620 KB
testcase_02 AC 103 ms
38,648 KB
testcase_03 AC 118 ms
38,440 KB
testcase_04 AC 109 ms
38,864 KB
testcase_05 AC 122 ms
38,620 KB
testcase_06 AC 53 ms
37,152 KB
testcase_07 AC 53 ms
37,084 KB
testcase_08 AC 54 ms
37,292 KB
testcase_09 AC 54 ms
37,128 KB
testcase_10 AC 52 ms
37,164 KB
testcase_11 AC 96 ms
38,684 KB
testcase_12 AC 125 ms
38,784 KB
testcase_13 AC 134 ms
38,624 KB
testcase_14 AC 113 ms
38,532 KB
testcase_15 AC 135 ms
38,472 KB
testcase_16 AC 53 ms
37,056 KB
testcase_17 AC 54 ms
36,796 KB
testcase_18 AC 52 ms
36,696 KB
testcase_19 AC 53 ms
37,056 KB
testcase_20 AC 54 ms
37,296 KB
testcase_21 AC 52 ms
37,276 KB
testcase_22 AC 52 ms
36,948 KB
testcase_23 AC 54 ms
36,804 KB
testcase_24 AC 54 ms
36,964 KB
testcase_25 AC 142 ms
38,868 KB
testcase_26 AC 143 ms
38,656 KB
testcase_27 AC 53 ms
37,256 KB
testcase_28 AC 52 ms
37,252 KB
testcase_29 AC 55 ms
37,204 KB
testcase_30 AC 55 ms
36,716 KB
testcase_31 AC 136 ms
38,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Arrays;

class Main{

static final PrintWriter out=new PrintWriter(System.out);

public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line=br.readLine();
int[] st=new int[3];
int ans=0;
for(int i=0;i<3;i++) st[i]=Integer.parseInt(line.split(" ")[i]);
Arrays.sort(st);
if(st[0]==st[1]&&st[1]==st[2]) out.println(st[0]);
else if(st[0]==st[1]){
ans+=st[0];
st[2]-=st[0];
ans+=(int)st[2]/5;
out.println(ans);
}
else{
ans+=st[0];
st[1]-=st[0];
st[2]-=st[0];
st[0]=0;
if(3*st[1]<=st[2]){
ans+=st[1];
st[2]-=3*st[1];
ans+=(int)st[2]/5;
}
else{
while(st[2]>=3&&st[1]>0){
ans++;
st[1]--;
st[2]-=3;
Arrays.sort(st);
}
ans+=(int)st[2]/5;
}
out.println(ans);
}
out.flush();
}
}
0