結果

問題 No.1628 Sorting Integers (MAX of M)
ユーザー Subaru314Subaru314
提出日時 2022-01-08 20:17:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-04-26 19:29:17
合計ジャッジ時間 4,198 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,452 KB
testcase_01 AC 121 ms
41,288 KB
testcase_02 AC 122 ms
41,388 KB
testcase_03 AC 125 ms
41,572 KB
testcase_04 AC 108 ms
40,020 KB
testcase_05 AC 118 ms
41,188 KB
testcase_06 AC 111 ms
40,368 KB
testcase_07 AC 125 ms
40,932 KB
testcase_08 AC 136 ms
41,552 KB
testcase_09 AC 112 ms
40,136 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[] m = new int[9];
    
    for(int i=0; i<9; i++){
      m[i] = sc.nextInt();
    }
    
    for(int i=9; i>0; i--){
      for(int j=0; j<m[i-1]; j++){
        System.out.print(String.valueOf(i));
      }
    }
    
  }

}
0