結果

問題 No.39 桁の数字を入れ替え
ユーザー MiyamonYMiyamonY
提出日時 2019-09-06 01:49:07
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-06-23 02:44:49
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
20,608 KB
testcase_01 AC 57 ms
20,608 KB
testcase_02 AC 56 ms
20,608 KB
testcase_03 AC 54 ms
20,608 KB
testcase_04 AC 56 ms
20,608 KB
testcase_05 AC 58 ms
20,736 KB
testcase_06 AC 58 ms
20,736 KB
testcase_07 AC 55 ms
20,864 KB
testcase_08 WA -
testcase_09 AC 55 ms
20,736 KB
testcase_10 AC 55 ms
20,608 KB
testcase_11 AC 55 ms
20,736 KB
testcase_12 AC 55 ms
20,736 KB
testcase_13 AC 53 ms
20,608 KB
testcase_14 AC 56 ms
20,864 KB
testcase_15 AC 56 ms
20,608 KB
testcase_16 AC 55 ms
20,864 KB
testcase_17 AC 55 ms
20,608 KB
testcase_18 AC 55 ms
20,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use scheme.vector)
(use gauche.collection)
(use util.combinations)

(let* ((n (read)))
  (define vec (vector-map char->integer (string->vector (number->string n))))
  (print (apply max
		#?=(let loop ((is (combinations (iota (vector-length vec)) 2)))
		     (cond ((null? is) '())
			   (else
			    (let ((vec-copied (vector-copy vec))
				  (pair (car is)))
			      (vector-swap! vec-copied (car pair) (cadr pair))
			      (cons (string->number (list->string (map integer->char vec-copied)))
				    (loop (cdr is))))))))))
0