結果
問題 | No.39 桁の数字を入れ替え |
ユーザー | kou6839 |
提出日時 | 2014-11-18 17:18:08 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 555 bytes |
コンパイル時間 | 1,975 ms |
コンパイル使用メモリ | 76,356 KB |
実行使用メモリ | 55,268 KB |
最終ジャッジ日時 | 2024-06-10 20:02:48 |
合計ジャッジ時間 | 5,557 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
55,144 KB |
testcase_01 | AC | 135 ms
55,016 KB |
testcase_02 | AC | 139 ms
54,836 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 134 ms
54,976 KB |
testcase_08 | AC | 137 ms
54,932 KB |
testcase_09 | AC | 137 ms
54,636 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 135 ms
55,012 KB |
testcase_15 | AC | 137 ms
54,456 KB |
testcase_16 | AC | 146 ms
54,988 KB |
testcase_17 | AC | 127 ms
53,256 KB |
testcase_18 | AC | 125 ms
54,708 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n= sc.nextInt(); String num = n+""; int max = num.charAt(0); int basyo=0; for(int i=1;i<num.length();i++){ if(max<=(int)num.charAt(i)){ basyo=i; max=(int)num.charAt(i); } } char[] sss = num.toCharArray(); char temp = sss[0]; sss[0]=sss[basyo]; sss[basyo]=temp; String ans=""; for(int i=0;i<num.length();i++){ ans+=sss[i]; } System.out.println(ans); } }