結果
問題 | No.39 桁の数字を入れ替え |
ユーザー | ルッツファン |
提出日時 | 2015-11-28 08:43:40 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,323 bytes |
コンパイル時間 | 3,352 ms |
コンパイル使用メモリ | 78,580 KB |
実行使用メモリ | 52,948 KB |
最終ジャッジ日時 | 2024-09-14 04:36:36 |
合計ジャッジ時間 | 5,760 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 85 ms
38,232 KB |
testcase_01 | AC | 81 ms
37,936 KB |
testcase_02 | AC | 84 ms
38,052 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 89 ms
38,528 KB |
testcase_07 | AC | 84 ms
38,388 KB |
testcase_08 | AC | 84 ms
38,100 KB |
testcase_09 | AC | 86 ms
38,200 KB |
testcase_10 | AC | 84 ms
38,072 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 85 ms
38,072 KB |
testcase_16 | AC | 88 ms
39,544 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
package yukicoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class yukicoder014 { public static void main(String[] args){ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String tes = null; try { tes = br.readLine(); } catch (IOException e) { // TODO 自動生成された catch ブロック e.printStackTrace(); } char[] tmpq = tes.toCharArray(); char[] tmps = tes.toCharArray(); char jie = 0; for(int i=0;i<tmps.length;i++){ for(int j=0;j<tmps.length;j++){ if(tmps[i] > tmps[j]){ jie = tmps[i]; tmps[i] = tmps[j]; tmps[j] = jie; } } } String asdf = ""; String as = ""; for(int i= 0;i<tmps.length;i++){ if(tmpq[i] != tmps[i]){ asdf = asdf + tmpq[i]; }else{ as = as + tmpq[i]; } } char[] tmp = asdf.toCharArray(); char s = '1'; int num = -1; for(int i = 0;i<tmp.length;i++){ if(tmp[i] >= s){ s = tmp[i]; num = i; } } char aaa = 0; for(int i = 0;i<tmp.length;i++){ if(num == 0){ break; } if(tmp[i] < s){ aaa = tmp[i]; tmp[i] = s; tmp[num] = aaa; break; } } System.out.println(as+String.copyValueOf(tmp)); } }