結果
問題 | No.39 桁の数字を入れ替え |
ユーザー | shinwisteria |
提出日時 | 2017-04-01 09:58:54 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 502 bytes |
コンパイル時間 | 3,532 ms |
コンパイル使用メモリ | 74,764 KB |
実行使用メモリ | 41,288 KB |
最終ジャッジ日時 | 2024-07-07 18:44:34 |
合計ジャッジ時間 | 5,969 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 97 ms
39,924 KB |
testcase_01 | AC | 108 ms
41,032 KB |
testcase_02 | AC | 106 ms
41,040 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 108 ms
41,108 KB |
testcase_08 | AC | 104 ms
41,048 KB |
testcase_09 | AC | 104 ms
40,464 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 106 ms
40,812 KB |
testcase_15 | AC | 93 ms
39,372 KB |
testcase_16 | AC | 100 ms
40,300 KB |
testcase_17 | AC | 95 ms
40,260 KB |
testcase_18 | AC | 108 ms
39,800 KB |
ソースコード
import java.util.Scanner; public class Ketairekae { public static void main(String[] args) { Scanner s = new Scanner(System.in); StringBuilder str = new StringBuilder(s.nextLine()); s.close(); for(int i = 9;i > Integer.parseInt(str.substring(0, 1));i--){ String I = Integer.toString(i); if(str.lastIndexOf(I) > 0){ int k = str.lastIndexOf(I); char keep = str.charAt(k); str.setCharAt(k, str.charAt(0)); str.setCharAt(0, keep); } } System.out.println(str); } }