結果

問題 No.112 ややこしい鶴亀算
ユーザー リチウムリチウム
提出日時 2014-12-24 00:10:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 3,938 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 52,912 KB
最終ジャッジ日時 2024-06-12 04:38:53
合計ジャッジ時間 8,845 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,208 KB
testcase_01 AC 149 ms
41,832 KB
testcase_02 AC 159 ms
42,352 KB
testcase_03 AC 158 ms
42,752 KB
testcase_04 AC 149 ms
41,752 KB
testcase_05 AC 150 ms
41,412 KB
testcase_06 AC 159 ms
42,252 KB
testcase_07 AC 158 ms
42,600 KB
testcase_08 AC 153 ms
41,984 KB
testcase_09 AC 150 ms
41,404 KB
testcase_10 AC 160 ms
42,740 KB
testcase_11 AC 159 ms
42,288 KB
testcase_12 AC 159 ms
42,200 KB
testcase_13 AC 148 ms
41,644 KB
testcase_14 AC 154 ms
41,704 KB
testcase_15 AC 165 ms
42,580 KB
testcase_16 AC 163 ms
42,572 KB
testcase_17 AC 167 ms
52,912 KB
testcase_18 AC 164 ms
42,740 KB
testcase_19 AC 154 ms
41,760 KB
testcase_20 AC 155 ms
41,640 KB
testcase_21 AC 164 ms
42,732 KB
testcase_22 AC 164 ms
42,560 KB
testcase_23 AC 162 ms
42,400 KB
testcase_24 AC 154 ms
41,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class LightSwitchingPuzzle {
	
	
	 public static void main(String[] args) {
		 Scanner sc=new Scanner(System.in);
		 TreeSet<Integer>asi=new TreeSet<>();
		 int n=sc.nextInt();
		 for(int i=0;i<n;i++){
			 asi.add(sc.nextInt());
		 }
		 if(asi.size()==2){
			 int f=asi.first()+4;
			 int kame=(f-2*n)/2;
			 int turu=n-kame;
			 System.out.println(turu+" "+kame);
		/*2x+2y=2n
		2x+4y=f		 
        2y=f-2n*/
		 }
		 else {
			 int f=asi.first();
			 if(n*4==f+4)System.out.println(0+" "+n);
			 else System.out.println(n+" "+0);
		 }
	 

}
}
0