結果

問題 No.39 桁の数字を入れ替え
ユーザー mizzsigmizzsig
提出日時 2016-12-07 22:44:43
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 331 bytes
コンパイル時間 1,346 ms
コンパイル使用メモリ 30,760 KB
実行使用メモリ 31,332 KB
最終ジャッジ日時 2024-10-02 07:15:25
合計ジャッジ時間 1,644 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,048 KB
testcase_01 AC 41 ms
31,036 KB
testcase_02 AC 42 ms
31,100 KB
testcase_03 AC 41 ms
31,264 KB
testcase_04 AC 40 ms
30,968 KB
testcase_05 AC 41 ms
30,956 KB
testcase_06 AC 41 ms
31,036 KB
testcase_07 AC 41 ms
31,088 KB
testcase_08 AC 41 ms
31,144 KB
testcase_09 AC 41 ms
30,932 KB
testcase_10 AC 42 ms
31,052 KB
testcase_11 AC 42 ms
31,056 KB
testcase_12 AC 41 ms
30,984 KB
testcase_13 AC 41 ms
31,260 KB
testcase_14 AC 41 ms
30,936 KB
testcase_15 AC 41 ms
31,052 KB
testcase_16 AC 42 ms
31,304 KB
testcase_17 AC 41 ms
31,268 KB
testcase_18 AC 41 ms
31,332 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
	$n = trim(fgets(STDIN));
	
	for($i = 0; $i < strlen($n); $i++){
		$maxV = 0;
		$maxInd = 0;
		for($j = $i + 1; $j < strlen($n); $j++){
			if($n[$j] >= $maxV){
				$maxV = $n[$j];
				$maxInd = $j;
			}
		}
		if($maxV > $n[$i]){
			$tmp = $n[$i];
			$n[$i] = $maxV;
			$n[$maxInd] = $tmp;
			break;
		}
	}
	
	echo $n."\n";
?>
0