結果

問題 No.394 ハーフパイプ(1)
ユーザー villachvillach
提出日時 2016-09-15 14:51:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 4,012 ms
コンパイル使用メモリ 76,528 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-11-17 06:04:41
合計ジャッジ時間 5,320 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,260 KB
testcase_01 AC 125 ms
41,296 KB
testcase_02 AC 122 ms
41,180 KB
testcase_03 AC 108 ms
40,020 KB
testcase_04 AC 124 ms
41,304 KB
testcase_05 AC 119 ms
40,096 KB
testcase_06 AC 126 ms
41,344 KB
testcase_07 AC 120 ms
41,068 KB
testcase_08 AC 122 ms
41,076 KB
testcase_09 AC 123 ms
41,384 KB
testcase_10 AC 120 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Helloworld {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		ArrayList<Integer> hoge = new ArrayList<>(6);
		int i;
		float x = 0;
		
		for(i=0;i<6;++i){
			hoge.add(sc.nextInt());
		}
		
		hoge.remove(hoge.indexOf(Collections.max(hoge)));
		hoge.remove(hoge.indexOf(Collections.min(hoge)));
		
		for(int z: hoge){
			x += z;
		}
		
		System.out.printf("%.2f",x / 4);
	}
}
0