結果

問題 No.170 スワップ文字列(Easy)
ユーザー keidenkeiden
提出日時 2024-09-18 15:29:33
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 109 bytes
コンパイル時間 51 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 29,824 KB
最終ジャッジ日時 2024-09-18 15:29:35
合計ジャッジ時間 2,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
18,816 KB
testcase_01 AC 167 ms
29,664 KB
testcase_02 AC 41 ms
18,944 KB
testcase_03 AC 40 ms
18,816 KB
testcase_04 AC 41 ms
19,072 KB
testcase_05 AC 158 ms
29,824 KB
testcase_06 AC 163 ms
29,568 KB
testcase_07 AC 42 ms
19,072 KB
testcase_08 AC 42 ms
18,944 KB
testcase_09 AC 42 ms
18,816 KB
testcase_10 AC 111 ms
25,472 KB
testcase_11 AC 46 ms
18,816 KB
testcase_12 AC 46 ms
18,816 KB
testcase_13 AC 49 ms
18,816 KB
testcase_14 AC 41 ms
18,816 KB
testcase_15 AC 40 ms
18,944 KB
testcase_16 AC 40 ms
18,816 KB
testcase_17 AC 39 ms
18,816 KB
testcase_18 AC 39 ms
19,072 KB
testcase_19 AC 40 ms
18,816 KB
testcase_20 AC 40 ms
18,816 KB
testcase_21 AC 40 ms
18,816 KB
testcase_22 AC 40 ms
18,944 KB
testcase_23 AC 41 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use util.combinations)

(define yuki170
  (write (- (length (permutations* (string->list (read-line)))) 1)))
0