結果

問題 No.91 赤、緑、青の石
ユーザー holegumaholeguma
提出日時 2015-08-17 22:21:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 703 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 77,760 KB
実行使用メモリ 50,640 KB
最終ジャッジ日時 2024-07-18 10:03:54
合計ジャッジ時間 4,076 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,572 KB
testcase_01 AC 46 ms
50,288 KB
testcase_02 AC 45 ms
50,392 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 44 ms
50,332 KB
testcase_08 AC 46 ms
50,404 KB
testcase_09 AC 46 ms
50,344 KB
testcase_10 AC 46 ms
50,468 KB
testcase_11 AC 46 ms
50,568 KB
testcase_12 AC 45 ms
50,288 KB
testcase_13 AC 45 ms
50,424 KB
testcase_14 AC 46 ms
49,880 KB
testcase_15 AC 46 ms
49,888 KB
testcase_16 AC 45 ms
50,084 KB
testcase_17 AC 45 ms
50,412 KB
testcase_18 AC 45 ms
50,452 KB
testcase_19 AC 46 ms
50,436 KB
testcase_20 AC 45 ms
49,912 KB
testcase_21 AC 47 ms
50,588 KB
testcase_22 AC 45 ms
50,580 KB
testcase_23 AC 46 ms
50,356 KB
testcase_24 AC 45 ms
50,356 KB
testcase_25 AC 45 ms
50,424 KB
testcase_26 WA -
testcase_27 AC 49 ms
50,492 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 51 ms
50,416 KB
testcase_31 AC 49 ms
50,428 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];
int cnt=(int)(st[1]+st[2])/4;
if((st[1]+st[2])%4==0&&st[1]==cnt+1) ans+=cnt-1;
else ans+=cnt;
out.println(ans);
}
out.flush();
}
}
0