結果

問題 No.112 ややこしい鶴亀算
ユーザー KinoshitaKinoshita
提出日時 2015-09-19 17:50:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 76,356 KB
実行使用メモリ 42,572 KB
最終ジャッジ日時 2024-07-19 08:06:12
合計ジャッジ時間 6,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
42,184 KB
testcase_01 AC 154 ms
42,340 KB
testcase_02 AC 145 ms
42,244 KB
testcase_03 AC 148 ms
42,216 KB
testcase_04 AC 132 ms
42,424 KB
testcase_05 AC 152 ms
42,008 KB
testcase_06 AC 143 ms
42,404 KB
testcase_07 AC 146 ms
42,328 KB
testcase_08 AC 142 ms
42,248 KB
testcase_09 AC 142 ms
42,424 KB
testcase_10 AC 142 ms
42,128 KB
testcase_11 AC 143 ms
42,192 KB
testcase_12 AC 155 ms
42,052 KB
testcase_13 AC 132 ms
42,212 KB
testcase_14 AC 150 ms
42,184 KB
testcase_15 AC 147 ms
42,080 KB
testcase_16 AC 149 ms
42,480 KB
testcase_17 AC 150 ms
42,572 KB
testcase_18 AC 161 ms
42,204 KB
testcase_19 AC 146 ms
42,528 KB
testcase_20 AC 139 ms
42,028 KB
testcase_21 AC 147 ms
42,200 KB
testcase_22 AC 152 ms
42,528 KB
testcase_23 AC 140 ms
42,260 KB
testcase_24 AC 151 ms
42,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		int[] n = new int[sc.nextInt()];
		int turu = 0, kame = 0, sum = 0;
		
		for(int i = 0; i < n.length; i++){
			n[i] = sc.nextInt();
			sum += n[i];
		}
		sum = sum / (n.length - 1);
		
		for(int i = 0; i < n.length; i++){
			if(sum - n[i] == 2)turu++;
			if(sum - n[i] == 4)kame++;
		}
		
		System.out.println(turu + " " + kame);
		
		sc.close();
	}
}
0