結果

問題 No.112 ややこしい鶴亀算
ユーザー KinoshitaKinoshita
提出日時 2015-09-19 17:07:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 4,299 ms
コンパイル使用メモリ 76,228 KB
実行使用メモリ 55,080 KB
最終ジャッジ日時 2024-07-19 08:03:24
合計ジャッジ時間 6,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,288 KB
testcase_01 AC 141 ms
54,868 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 139 ms
54,868 KB
testcase_05 AC 133 ms
54,384 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 132 ms
54,748 KB
testcase_09 AC 142 ms
54,156 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 129 ms
54,504 KB
testcase_14 AC 143 ms
54,924 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 146 ms
54,900 KB
testcase_20 AC 160 ms
54,996 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 154 ms
54,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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