結果

問題 No.112 ややこしい鶴亀算
ユーザー 37zigen37zigen
提出日時 2016-03-31 19:01:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 76,344 KB
実行使用メモリ 55,108 KB
最終ジャッジ日時 2024-10-02 08:31:24
合計ジャッジ時間 7,143 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,780 KB
testcase_01 AC 155 ms
54,704 KB
testcase_02 AC 155 ms
55,060 KB
testcase_03 AC 153 ms
54,896 KB
testcase_04 AC 152 ms
54,676 KB
testcase_05 AC 154 ms
54,804 KB
testcase_06 AC 152 ms
54,896 KB
testcase_07 AC 151 ms
54,904 KB
testcase_08 AC 155 ms
54,872 KB
testcase_09 AC 153 ms
54,880 KB
testcase_10 AC 154 ms
54,992 KB
testcase_11 AC 155 ms
54,832 KB
testcase_12 AC 157 ms
54,920 KB
testcase_13 AC 156 ms
55,032 KB
testcase_14 AC 162 ms
54,864 KB
testcase_15 AC 159 ms
54,856 KB
testcase_16 AC 163 ms
54,856 KB
testcase_17 AC 145 ms
54,228 KB
testcase_18 AC 162 ms
55,056 KB
testcase_19 AC 163 ms
54,756 KB
testcase_20 AC 156 ms
55,052 KB
testcase_21 AC 158 ms
54,768 KB
testcase_22 AC 163 ms
54,760 KB
testcase_23 AC 159 ms
55,108 KB
testcase_24 AC 163 ms
54,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder112;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int[] a=new int[n];
		int sum=0;
		for(int i=0;i<n;i++){
			a[i]=sc.nextInt();
			sum+=a[i];
		}
		sum/=n-1;
		int turtle=0;
		int crane=0;
		for(int i=0;i<n;i++){
			a[i]=sum-a[i];
			if(a[i]==2)crane++;
			if(a[i]==4)turtle++;
		}
		System.out.println(crane+" "+turtle);
	}
}
0