結果

問題 No.112 ややこしい鶴亀算
ユーザー shinwisteriashinwisteria
提出日時 2019-01-24 19:54:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 3,998 ms
コンパイル使用メモリ 91,520 KB
実行使用メモリ 42,604 KB
最終ジャッジ日時 2024-09-16 04:41:44
合計ジャッジ時間 9,009 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
42,456 KB
testcase_01 AC 155 ms
42,320 KB
testcase_02 AC 158 ms
42,208 KB
testcase_03 AC 155 ms
42,196 KB
testcase_04 AC 156 ms
42,296 KB
testcase_05 WA -
testcase_06 AC 154 ms
42,368 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 156 ms
42,320 KB
testcase_10 AC 139 ms
42,064 KB
testcase_11 AC 150 ms
41,976 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 159 ms
42,292 KB
testcase_15 AC 159 ms
42,604 KB
testcase_16 WA -
testcase_17 AC 161 ms
42,224 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 168 ms
42,328 KB
testcase_21 AC 164 ms
42,424 KB
testcase_22 AC 157 ms
42,356 KB
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;
public class No112 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int n = s.nextInt();
		s.nextLine();
		ArrayList al = new ArrayList();
		for(int i = 0;i < n;i++){
			al.add(s.nextInt());
		}
		s.close();

		if(al.size() == 1){
			int ans = (int)al.get(0) / 2 - n;
			System.out.println(ans + " " + ans);
		}else{
			int a = ((int)al.get(0) + (int)al.get(1)) / 2 + 3;
			int k = a / 2 - n;
			System.out.println(n - k + " " + k);
		}

	}

}
0