結果

問題 No.112 ややこしい鶴亀算
ユーザー Mcpu3Mcpu3
提出日時 2018-09-02 18:13:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 457 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 76,804 KB
実行使用メモリ 42,552 KB
最終ジャッジ日時 2024-10-01 21:11:23
合計ジャッジ時間 6,582 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
42,328 KB
testcase_01 AC 128 ms
41,848 KB
testcase_02 AC 142 ms
42,204 KB
testcase_03 AC 147 ms
42,308 KB
testcase_04 AC 146 ms
42,296 KB
testcase_05 AC 144 ms
42,304 KB
testcase_06 AC 150 ms
42,236 KB
testcase_07 AC 127 ms
41,932 KB
testcase_08 AC 136 ms
42,132 KB
testcase_09 AC 135 ms
42,344 KB
testcase_10 AC 134 ms
42,060 KB
testcase_11 AC 136 ms
42,220 KB
testcase_12 AC 116 ms
40,504 KB
testcase_13 AC 134 ms
42,420 KB
testcase_14 AC 159 ms
42,316 KB
testcase_15 AC 148 ms
41,704 KB
testcase_16 AC 146 ms
41,536 KB
testcase_17 AC 152 ms
42,412 KB
testcase_18 AC 140 ms
42,252 KB
testcase_19 AC 143 ms
42,444 KB
testcase_20 AC 146 ms
42,260 KB
testcase_21 AC 142 ms
42,552 KB
testcase_22 AC 163 ms
42,496 KB
testcase_23 AC 131 ms
40,640 KB
testcase_24 AC 141 ms
42,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt(),a[]=new int[50],m=0,s1=0,s2=0,t=0,i;
		for(i=0;i<n;i++) {
			a[i]=sc.nextInt();
			if(a[i]>m) m=a[i];
			if(i>0&&a[i-1]!=a[i]) t++;
		}
		sc.close();
		for(i=0;i<n;i++) {
			if(m>a[i]) s2++;
			else s1++;
		}
		if(1>t&&m/(n-1)>2) System.out.print(s2+" "+s1);
		else System.out.print(s1+" "+s2);
	}
}
0