結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | ぴろず |
提出日時 | 2015-07-31 22:27:32 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 208 ms / 2,000 ms |
コード長 | 531 bytes |
コンパイル時間 | 2,431 ms |
コンパイル使用メモリ | 74,440 KB |
実行使用メモリ | 54,772 KB |
最終ジャッジ日時 | 2024-07-17 23:12:04 |
合計ジャッジ時間 | 3,253 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
53,844 KB |
testcase_01 | AC | 120 ms
54,036 KB |
testcase_02 | AC | 203 ms
54,772 KB |
testcase_03 | AC | 208 ms
54,636 KB |
ソースコード
package no256; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); char[] s = sc.next().toCharArray(); int l = s.length; int[] itr = new int[10]; LOOP: for(int i=0;i<l;i++) { for(int j=9;j>=0;j--) { itr[j] = Math.max(i, itr[j]); for(;itr[j]<l;itr[j]++) { if (s[itr[j]] == '0' + j) { char temp = s[i]; s[i] = s[itr[j]]; s[itr[j]] = temp; continue LOOP; } } } } System.out.println(s); } }