結果

問題 No.112 ややこしい鶴亀算
ユーザー konken0324konken0324
提出日時 2015-09-19 17:27:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 604 bytes
コンパイル時間 2,061 ms
コンパイル使用メモリ 76,876 KB
実行使用メモリ 54,896 KB
最終ジャッジ日時 2024-07-19 08:05:06
合計ジャッジ時間 6,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,524 KB
testcase_01 AC 140 ms
54,776 KB
testcase_02 AC 135 ms
54,528 KB
testcase_03 AC 123 ms
54,004 KB
testcase_04 AC 143 ms
53,904 KB
testcase_05 AC 133 ms
54,444 KB
testcase_06 AC 140 ms
54,520 KB
testcase_07 AC 138 ms
54,652 KB
testcase_08 AC 128 ms
54,120 KB
testcase_09 AC 130 ms
54,664 KB
testcase_10 AC 140 ms
54,896 KB
testcase_11 AC 141 ms
54,532 KB
testcase_12 AC 139 ms
54,632 KB
testcase_13 AC 139 ms
54,432 KB
testcase_14 AC 138 ms
54,060 KB
testcase_15 AC 145 ms
54,608 KB
testcase_16 AC 152 ms
54,596 KB
testcase_17 AC 149 ms
54,572 KB
testcase_18 AC 140 ms
53,704 KB
testcase_19 AC 140 ms
54,772 KB
testcase_20 AC 139 ms
54,296 KB
testcase_21 AC 142 ms
54,428 KB
testcase_22 AC 155 ms
54,560 KB
testcase_23 AC 137 ms
54,176 KB
testcase_24 AC 143 ms
54,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		int n = stdIn.nextInt();
		int C1 = stdIn.nextInt();
		int C2 = 0;
		int cou1 = 1;
		int cou2 = 0;
		for (int i = 0; i < n - 1; i++) {
			int in = stdIn.nextInt();
			if (C1 == in) {
				cou1++;
			} else {
				C2 = in;
				cou2++;
			}
		}
		int n2=n*2-2;
		int T=0;
		int K=0;
		if(C2==0){
			if(n2==C1){
				T=cou1;
			}
			else{
				K=cou1;
			}
		}
		else if(C1<C2){
			K=cou1;
			T=cou2;
		}
		else{
			T=cou1;
			K=cou2;
		} 
		System.out.println(T+" "+K);
	}
}
0