結果

問題 No.112 ややこしい鶴亀算
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 07:37:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 5,000 ms
コード長 421 bytes
コンパイル時間 1,981 ms
コンパイル使用メモリ 76,092 KB
実行使用メモリ 55,188 KB
最終ジャッジ日時 2024-11-25 19:35:23
合計ジャッジ時間 6,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,676 KB
testcase_01 AC 148 ms
55,188 KB
testcase_02 AC 143 ms
54,920 KB
testcase_03 AC 145 ms
54,768 KB
testcase_04 AC 135 ms
54,016 KB
testcase_05 AC 134 ms
54,828 KB
testcase_06 AC 141 ms
54,640 KB
testcase_07 AC 139 ms
54,404 KB
testcase_08 AC 136 ms
54,656 KB
testcase_09 AC 134 ms
55,000 KB
testcase_10 AC 138 ms
54,728 KB
testcase_11 AC 137 ms
54,940 KB
testcase_12 AC 122 ms
54,460 KB
testcase_13 AC 136 ms
54,852 KB
testcase_14 AC 145 ms
53,884 KB
testcase_15 AC 153 ms
54,580 KB
testcase_16 AC 142 ms
54,548 KB
testcase_17 AC 157 ms
54,492 KB
testcase_18 AC 158 ms
54,908 KB
testcase_19 AC 136 ms
54,632 KB
testcase_20 AC 135 ms
54,556 KB
testcase_21 AC 149 ms
54,124 KB
testcase_22 AC 145 ms
54,068 KB
testcase_23 AC 157 ms
54,716 KB
testcase_24 AC 149 ms
54,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int Fsum = 0;
        for(int i=0; i<N; i++){
            int temp = sc.nextInt();
            Fsum = Fsum + temp;
        }
        int Tsum = Fsum/(N-1);
        int c = (4*N-Tsum)/2;
        int t = N-c;
        System.out.println(c+ " "+t);
    }
}
0