結果

問題 No.39 桁の数字を入れ替え
ユーザー holegumaholeguma
提出日時 2015-08-11 01:20:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 870 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 77,924 KB
実行使用メモリ 50,588 KB
最終ジャッジ日時 2024-07-18 06:36:57
合計ジャッジ時間 3,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,500 KB
testcase_01 AC 50 ms
50,516 KB
testcase_02 AC 50 ms
50,456 KB
testcase_03 AC 49 ms
50,200 KB
testcase_04 AC 49 ms
50,012 KB
testcase_05 AC 49 ms
50,124 KB
testcase_06 AC 50 ms
50,132 KB
testcase_07 AC 50 ms
50,588 KB
testcase_08 WA -
testcase_09 AC 49 ms
50,468 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 49 ms
50,128 KB
testcase_15 AC 54 ms
50,532 KB
testcase_16 AC 52 ms
50,272 KB
testcase_17 AC 52 ms
50,456 KB
testcase_18 AC 49 ms
50,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Main{

static final PrintWriter out=new PrintWriter(System.out);

public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
while((line=br.readLine())!=null&&!line.isEmpty()){
int n=Integer.parseInt(line);
char[] num=line.toCharArray();
boolean[] used=new boolean[10];
for(int i=0;i<num.length;i++){
used[(int)(num[i]-'0')]=true;
}
loop:
for(int i=9;i>=1;i--){
if(!used[i]) continue;
for(int j=0;j<num.length;j++){
if((int)(num[j]-'0')>=i) continue;
swap(j,rightNum(i,num),num);
break loop;
}
}
out.println(num);
out.flush();
}
}

private static void swap(int a,int b,char[] num){
char c=num[a];
num[a]=num[b];
num[b]=c;
}

private static int rightNum(int a,char[] num){
for(int i=num.length-1;i>=0;i--){
if((int)(num[i]-'0')==a) return i;
}
return -1;
}
}
0