結果

問題 No.112 ややこしい鶴亀算
ユーザー scachescache
提出日時 2015-09-19 18:03:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 5,000 ms
コード長 863 bytes
コンパイル時間 3,341 ms
コンパイル使用メモリ 78,900 KB
実行使用メモリ 42,672 KB
最終ジャッジ日時 2024-07-19 08:06:54
合計ジャッジ時間 7,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
42,256 KB
testcase_01 AC 146 ms
42,308 KB
testcase_02 AC 145 ms
42,180 KB
testcase_03 AC 133 ms
42,108 KB
testcase_04 AC 148 ms
42,508 KB
testcase_05 AC 144 ms
42,328 KB
testcase_06 AC 141 ms
42,296 KB
testcase_07 AC 133 ms
42,320 KB
testcase_08 AC 131 ms
42,592 KB
testcase_09 AC 148 ms
42,312 KB
testcase_10 AC 152 ms
42,520 KB
testcase_11 AC 156 ms
42,436 KB
testcase_12 AC 128 ms
42,116 KB
testcase_13 AC 150 ms
42,456 KB
testcase_14 AC 146 ms
42,428 KB
testcase_15 AC 156 ms
42,660 KB
testcase_16 AC 149 ms
42,580 KB
testcase_17 AC 144 ms
42,296 KB
testcase_18 AC 149 ms
42,572 KB
testcase_19 AC 156 ms
42,544 KB
testcase_20 AC 149 ms
42,212 KB
testcase_21 AC 135 ms
42,672 KB
testcase_22 AC 156 ms
42,260 KB
testcase_23 AC 142 ms
42,428 KB
testcase_24 AC 158 ms
42,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main253 {
	public static void main(String[] args) {
		Main253 p = new Main253();
	}

	public Main253() {
//		solve1();
		solve2();
		
	}

	public void solve1() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int count = 0;
		for(int i=0;i<n;i++){
			count += sc.nextInt();
		}
		
		int total = count/(n-1);
		
		int crane = (total-n*2)/2;
		System.out.println((n-crane) +" " + crane);
	}

	private void solve2(){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a= new int[n];
		
		int count = 0;
		for(int i=0;i<n;i++){
			a[i] = sc.nextInt();
			count += a[i];
		}
		
		int total = count/(n-1);
		int crane = 0;
		int kame = 0;
		for(int i=0;i<n;i++){
			crane += total-a[i] == 2 ? 1 : 0;
			kame += total-a[i] == 4 ? 1 : 0;
		}
		
		System.out.println(crane + " " + kame);
	}
}
0