結果

問題 No.112 ややこしい鶴亀算
ユーザー mits58mits58
提出日時 2016-07-02 11:50:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 285 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 75,848 KB
実行使用メモリ 42,416 KB
最終ジャッジ日時 2024-10-12 02:26:27
合計ジャッジ時間 7,471 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
42,024 KB
testcase_01 AC 163 ms
42,244 KB
testcase_02 AC 162 ms
42,148 KB
testcase_03 AC 162 ms
41,968 KB
testcase_04 AC 162 ms
42,256 KB
testcase_05 AC 159 ms
41,972 KB
testcase_06 AC 161 ms
41,988 KB
testcase_07 AC 159 ms
42,076 KB
testcase_08 AC 161 ms
42,060 KB
testcase_09 AC 163 ms
41,936 KB
testcase_10 AC 164 ms
42,052 KB
testcase_11 AC 161 ms
41,980 KB
testcase_12 AC 160 ms
42,132 KB
testcase_13 AC 158 ms
42,116 KB
testcase_14 AC 164 ms
42,380 KB
testcase_15 AC 165 ms
42,204 KB
testcase_16 AC 169 ms
42,256 KB
testcase_17 AC 165 ms
42,096 KB
testcase_18 AC 165 ms
42,196 KB
testcase_19 AC 165 ms
42,120 KB
testcase_20 AC 166 ms
42,148 KB
testcase_21 AC 166 ms
42,204 KB
testcase_22 AC 164 ms
42,416 KB
testcase_23 AC 167 ms
42,044 KB
testcase_24 AC 163 ms
41,888 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 s=0;
			for(int i=0;i<n;i++) s+=sc.nextInt();
			int x=(4*n-s/(n-1))/2;
			int y=(s/(n-1)-2*n)/2;
			System.out.println(x+" "+y);
	}
}
0