結果

問題 No.112 ややこしい鶴亀算
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-25 10:42:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 5,000 ms
コード長 311 bytes
コンパイル時間 2,445 ms
コンパイル使用メモリ 76,648 KB
実行使用メモリ 42,644 KB
最終ジャッジ日時 2024-06-23 23:11:03
合計ジャッジ時間 7,722 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
42,552 KB
testcase_01 AC 171 ms
42,456 KB
testcase_02 AC 174 ms
42,640 KB
testcase_03 AC 170 ms
42,292 KB
testcase_04 AC 173 ms
42,512 KB
testcase_05 AC 169 ms
42,316 KB
testcase_06 AC 166 ms
42,628 KB
testcase_07 AC 170 ms
42,304 KB
testcase_08 AC 170 ms
42,140 KB
testcase_09 AC 170 ms
42,404 KB
testcase_10 AC 163 ms
42,364 KB
testcase_11 AC 165 ms
42,312 KB
testcase_12 AC 165 ms
42,248 KB
testcase_13 AC 168 ms
42,484 KB
testcase_14 AC 173 ms
42,608 KB
testcase_15 AC 168 ms
42,644 KB
testcase_16 AC 154 ms
42,540 KB
testcase_17 AC 154 ms
42,644 KB
testcase_18 AC 157 ms
42,268 KB
testcase_19 AC 162 ms
42,496 KB
testcase_20 AC 168 ms
42,580 KB
testcase_21 AC 175 ms
42,560 KB
testcase_22 AC 188 ms
42,452 KB
testcase_23 AC 177 ms
42,636 KB
testcase_24 AC 176 ms
42,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] a) {
		Scanner s = new Scanner(System.in);
		int N=s.nextInt(),i=0,S=0,C=0,T=0;
		int[] F=new int[N];
		for(;s.hasNext();)S+=(F[i++]=s.nextInt());
		S/=N-1;
		for(int f:F)if(S-f==2)C++;else T++;
		System.out.println(C+" "+T);
	}
}
0