結果

問題 No.18 うーさー暗号
ユーザー MaboyMaboy
提出日時 2021-05-29 23:56:27
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 10,222 ms
コンパイル使用メモリ 124,176 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-11-08 11:02:05
合計ジャッジ時間 11,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
8,960 KB
testcase_01 WA -
testcase_02 AC 10 ms
9,216 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.swift:3:9: warning: variable 'code' was never mutated; consider changing to 'let' constant
    var code = String(str).unicodeScalars.first!.value
    ~~~ ^
    let
Main.swift:4:9: warning: variable 'usa' was never mutated; consider changing to 'let' constant
    var usa = Int(code) - (i+1) % 26
    ~~~ ^
    let

ソースコード

diff #

let strArray = readLine()!.map{$0}
for (i,str) in strArray.enumerated(){
    var code = String(str).unicodeScalars.first!.value
    var usa = Int(code) - (i+1) % 26
    let chrStr = Character(UnicodeScalar(usa)!)
    print(chrStr,terminator:"")
}
print()
0