結果

問題 No.18 うーさー暗号
ユーザー hum_ophum_op
提出日時 2016-04-05 11:09:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 378 bytes
コンパイル時間 13,988 ms
コンパイル使用メモリ 185,228 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-07-07 06:03:33
合計ジャッジ時間 15,316 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
30,444 KB
testcase_01 AC 54 ms
30,336 KB
testcase_02 AC 56 ms
30,592 KB
testcase_03 AC 56 ms
30,464 KB
testcase_04 AC 56 ms
30,564 KB
testcase_05 AC 55 ms
30,208 KB
testcase_06 AC 57 ms
30,336 KB
testcase_07 AC 59 ms
30,464 KB
testcase_08 AC 57 ms
30,464 KB
testcase_09 AC 57 ms
30,592 KB
testcase_10 AC 53 ms
30,208 KB
testcase_11 AC 56 ms
30,208 KB
testcase_12 AC 57 ms
30,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (288 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

let No18 () =
    let S = Console.ReadLine()
    let deciper (C:char) (N:int) =
        let C = int C - int 'A'
        let N = N % 26
        let C = C - N
        if C < 0 then
            char (int 'Z' + C + 1)
        else
            char (int 'A' + C)

    for i in 1..S.Length do
        printf "%c" (deciper S.[i-1] i)
    done
    printfn ""
    ()
No18 ()
0