結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | TatsuDX |
提出日時 | 2016-09-03 15:27:29 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 763 ms / 2,000 ms |
コード長 | 440 bytes |
コンパイル時間 | 3,525 ms |
コンパイル使用メモリ | 74,016 KB |
実行使用メモリ | 51,660 KB |
最終ジャッジ日時 | 2024-11-15 18:47:47 |
合計ジャッジ時間 | 6,116 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
import java.util.Scanner; public class Test { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.next(), tmp; String[] str = { "9", "8", "7", "6", "5", "4", "3", "2", "1", "0" }; int n; for (int i = 0; i < 10; i++) { tmp = s.replaceAll(str[i], ""); n = s.length() - tmp.length(); for (int j = 0; j < n; j++) { System.out.print(str[i]); } } System.out.println(); } }