結果

問題 No.112 ややこしい鶴亀算
ユーザー キョウチクキョウチク
提出日時 2022-05-16 19:01:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 5,000 ms
コード長 665 bytes
コンパイル時間 3,736 ms
コンパイル使用メモリ 77,444 KB
実行使用メモリ 42,600 KB
最終ジャッジ日時 2024-09-14 11:53:04
合計ジャッジ時間 8,736 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
42,532 KB
testcase_01 AC 152 ms
42,280 KB
testcase_02 AC 155 ms
42,516 KB
testcase_03 AC 152 ms
42,188 KB
testcase_04 AC 151 ms
42,532 KB
testcase_05 AC 150 ms
42,456 KB
testcase_06 AC 152 ms
42,416 KB
testcase_07 AC 153 ms
42,200 KB
testcase_08 AC 136 ms
41,724 KB
testcase_09 AC 153 ms
42,492 KB
testcase_10 AC 156 ms
42,368 KB
testcase_11 AC 156 ms
42,048 KB
testcase_12 AC 152 ms
42,164 KB
testcase_13 AC 153 ms
42,492 KB
testcase_14 AC 154 ms
42,380 KB
testcase_15 AC 154 ms
42,324 KB
testcase_16 AC 156 ms
42,188 KB
testcase_17 AC 154 ms
42,180 KB
testcase_18 AC 142 ms
41,852 KB
testcase_19 AC 155 ms
42,396 KB
testcase_20 AC 154 ms
42,600 KB
testcase_21 AC 155 ms
42,600 KB
testcase_22 AC 156 ms
42,168 KB
testcase_23 AC 157 ms
42,204 KB
testcase_24 AC 158 ms
42,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test10 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    int n=Integer.parseInt(line[0]);
    line=sc.nextLine().split(" ");
    int[] foot=new int[n];
    int foot_sum=0;
    for(int i=0;i<n;i++){
      foot[i]=Integer.parseInt(line[i]);
      foot_sum+=foot[i];
    }
    foot_sum/=n-1;
    int turu=0,turtle=0;
    for(int i=0;i<n;i++){
      switch(foot_sum-foot[i]){
      case 2:
        turu++;
        break;
      case 4:
        turtle++;
        break;
      }
    }
    System.out.println(turu+" "+turtle);
    sc.close();
  }
}
0