結果

問題 No.39 桁の数字を入れ替え
ユーザー k_kadorak_kadora
提出日時 2015-06-22 23:25:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 614 bytes
コンパイル時間 4,537 ms
コンパイル使用メモリ 75,412 KB
実行使用メモリ 56,204 KB
最終ジャッジ日時 2024-07-07 16:43:55
合計ジャッジ時間 7,915 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
52,728 KB
testcase_01 AC 133 ms
53,764 KB
testcase_02 AC 129 ms
53,956 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 133 ms
53,860 KB
testcase_08 AC 131 ms
53,980 KB
testcase_09 AC 131 ms
53,992 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 129 ms
53,844 KB
testcase_15 AC 129 ms
53,964 KB
testcase_16 AC 130 ms
53,884 KB
testcase_17 AC 130 ms
53,896 KB
testcase_18 AC 131 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki39{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		String s;
		int max=0,pos=0;
		s = sc.next();
		sb.append(s);
		int[] n = new int[10];
		for(int i = 0;i<s.length();i++){
			n[Character.getNumericValue(s.charAt(i))]++;
		}
		for(int i = 0;i<10;i++){
			if(n[i] > 0)max = i;
		}
		for(int i = 0;i<s.length();i++){
			if(Character.getNumericValue(s.charAt(i)) == max)pos = i;
		}
		sb.setCharAt(pos,s.charAt(0));
		sb.replace(0,1,Integer.toString(max));
		System.out.println(sb.toString());
	}
}
0