結果

問題 No.1285 ゴミ捨て
ユーザー キョウチクキョウチク
提出日時 2022-05-16 15:13:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 3,412 ms
コンパイル使用メモリ 80,752 KB
実行使用メモリ 64,128 KB
最終ジャッジ日時 2024-09-14 07:15:53
合計ジャッジ時間 14,155 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,012 KB
testcase_01 AC 132 ms
53,984 KB
testcase_02 AC 135 ms
54,428 KB
testcase_03 AC 133 ms
54,036 KB
testcase_04 AC 130 ms
53,920 KB
testcase_05 AC 137 ms
54,052 KB
testcase_06 AC 133 ms
54,264 KB
testcase_07 AC 594 ms
63,472 KB
testcase_08 AC 202 ms
56,536 KB
testcase_09 AC 432 ms
58,456 KB
testcase_10 AC 561 ms
63,636 KB
testcase_11 AC 542 ms
63,484 KB
testcase_12 AC 494 ms
61,160 KB
testcase_13 AC 489 ms
60,936 KB
testcase_14 AC 572 ms
63,456 KB
testcase_15 AC 514 ms
62,804 KB
testcase_16 AC 317 ms
58,076 KB
testcase_17 AC 323 ms
58,132 KB
testcase_18 AC 309 ms
58,180 KB
testcase_19 AC 404 ms
58,632 KB
testcase_20 AC 295 ms
58,228 KB
testcase_21 AC 358 ms
57,812 KB
testcase_22 AC 591 ms
64,128 KB
testcase_23 AC 604 ms
63,836 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();
    int n=Integer.parseInt(line);
    int[] cups=new int[n+1];
    for(int i=0;i<n;i++){
      line=sc.nextLine();
      cups[i]=Integer.parseInt(line);
    }
    cups[n]=Integer.MAX_VALUE;
    Arrays.sort(cups);
    int max=0;
    while(cups[0]<Integer.MAX_VALUE){
      max++;
      int tmp=0;
      for(int i=0;cups[i]<Integer.MAX_VALUE;i++){
        if(tmp<cups[i]){
          tmp=cups[i]+1;
          cups[i]=Integer.MAX_VALUE;
        }
      }
      Arrays.sort(cups);
    }
    System.out.println(max);
    sc.close();
  }
}
0