結果

問題 No.112 ややこしい鶴亀算
ユーザー nkhrlabnkhrlab
提出日時 2018-07-12 03:52:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 668 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 75,352 KB
実行使用メモリ 54,168 KB
最終ジャッジ日時 2024-09-22 15:11:34
合計ジャッジ時間 6,363 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,928 KB
testcase_01 AC 123 ms
53,652 KB
testcase_02 AC 127 ms
53,652 KB
testcase_03 AC 123 ms
53,856 KB
testcase_04 AC 121 ms
53,900 KB
testcase_05 AC 122 ms
53,852 KB
testcase_06 AC 123 ms
54,012 KB
testcase_07 AC 121 ms
54,052 KB
testcase_08 AC 125 ms
53,924 KB
testcase_09 AC 122 ms
54,088 KB
testcase_10 AC 121 ms
53,656 KB
testcase_11 AC 123 ms
53,852 KB
testcase_12 AC 125 ms
54,072 KB
testcase_13 AC 121 ms
53,776 KB
testcase_14 AC 127 ms
54,044 KB
testcase_15 AC 127 ms
53,676 KB
testcase_16 AC 123 ms
53,964 KB
testcase_17 AC 128 ms
54,100 KB
testcase_18 AC 127 ms
54,144 KB
testcase_19 AC 126 ms
53,900 KB
testcase_20 AC 125 ms
54,020 KB
testcase_21 AC 126 ms
54,168 KB
testcase_22 AC 125 ms
53,972 KB
testcase_23 AC 125 ms
54,028 KB
testcase_24 AC 125 ms
53,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main
{

  public static void main(String[] args) throws IOException
  {
    BufferedReader r = new BufferedReader(new InputStreamReader(System.in), 1);
    String s = r.readLine();
    int n = Integer.parseInt(s);
    int a[] = new int[100];
    s = r.readLine();
    String[] sl = s.split(" ");

    for(int i = 0; i < n; i++)
    {
      a[i] = Integer.parseInt(sl[i]);
    }
    
    int k = 0;
    
    for(int i = 0; i < n; i++)
    {
      k += a[i];
    }
    k /= n - 1;
    
    System.out.printf("%d %d", (4 * n - k) / 2, n - (4 * n - k) / 2);

  }

}
0