結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | kenji_shioya |
提出日時 | 2016-06-05 16:33:20 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 528 bytes |
コンパイル時間 | 3,090 ms |
コンパイル使用メモリ | 78,776 KB |
実行使用メモリ | 53,692 KB |
最終ジャッジ日時 | 2024-10-08 15:52:45 |
合計ジャッジ時間 | 4,797 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
40,880 KB |
testcase_01 | AC | 113 ms
41,088 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
import java.util.*; public class Exercise62{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); String str = sc.next(); String[] array = str.split(""); int[] nums = new int[array.length]; for (int i = 0; i < array.length; i++){ nums[i] = Integer.parseInt(array[i]); } Arrays.sort(nums); int sum = 0; int digit = 1; for (int i = 0; i < nums.length; i++){ sum += nums[i] * digit; digit *= 10; } System.out.println(sum); } }