結果
問題 | No.39 桁の数字を入れ替え |
ユーザー | chiho_miyako |
提出日時 | 2015-04-18 21:56:37 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 130 ms / 5,000 ms |
コード長 | 1,024 bytes |
コンパイル時間 | 2,222 ms |
コンパイル使用メモリ | 77,460 KB |
実行使用メモリ | 41,584 KB |
最終ジャッジ日時 | 2024-10-02 06:19:59 |
合計ジャッジ時間 | 5,509 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
41,572 KB |
testcase_01 | AC | 127 ms
41,244 KB |
testcase_02 | AC | 125 ms
41,344 KB |
testcase_03 | AC | 126 ms
41,540 KB |
testcase_04 | AC | 126 ms
41,360 KB |
testcase_05 | AC | 127 ms
41,068 KB |
testcase_06 | AC | 129 ms
41,524 KB |
testcase_07 | AC | 126 ms
41,364 KB |
testcase_08 | AC | 125 ms
41,472 KB |
testcase_09 | AC | 129 ms
41,496 KB |
testcase_10 | AC | 130 ms
40,996 KB |
testcase_11 | AC | 126 ms
41,024 KB |
testcase_12 | AC | 126 ms
41,008 KB |
testcase_13 | AC | 127 ms
41,124 KB |
testcase_14 | AC | 129 ms
41,360 KB |
testcase_15 | AC | 127 ms
41,584 KB |
testcase_16 | AC | 125 ms
41,460 KB |
testcase_17 | AC | 114 ms
40,328 KB |
testcase_18 | AC | 127 ms
41,472 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); String n=koko.next(); int[] b = new int[n.length()]; int[] c = new int[n.length()]; for(int i=0; i<n.length(); i++){ b[i]=Character.getNumericValue(n.charAt(i)); c[i]=b[i]; } Arrays.sort(c); loop1: for(int i=0; i<n.length(); i++){ if(b[i]!=c[n.length()-1-i]){ for(int j=n.length()-1; j>i; j--){ if(b[j]==c[n.length()-1-i]){ int d = b[i]; b[i]=b[j]; b[j]=d; break loop1; } } } } char[] ans= new char[n.length()]; for(int i=0; i<n.length(); i++){ ans[i]=String.valueOf(b[i]).charAt(0); } String an = String.valueOf(ans); System.out.println(an); } }