結果

問題 No.18 うーさー暗号
ユーザー lrf141lrf141
提出日時 2017-03-06 17:25:24
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 847 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 7,222 ms
コンパイル使用メモリ 259,760 KB
実行使用メモリ 64,916 KB
最終ジャッジ日時 2024-06-29 23:49:09
合計ジャッジ時間 19,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 771 ms
64,444 KB
testcase_01 AC 770 ms
64,292 KB
testcase_02 AC 761 ms
64,440 KB
testcase_03 AC 793 ms
64,712 KB
testcase_04 AC 841 ms
64,660 KB
testcase_05 AC 804 ms
64,580 KB
testcase_06 AC 796 ms
64,812 KB
testcase_07 AC 816 ms
64,916 KB
testcase_08 AC 847 ms
64,684 KB
testcase_09 AC 797 ms
64,848 KB
testcase_10 AC 788 ms
64,232 KB
testcase_11 AC 784 ms
64,476 KB
testcase_12 AC 809 ms
64,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.{BufferedReader,InputStreamReader}
object no18{
    def main(args:Array[String]):Unit={
        val br = new BufferedReader(new InputStreamReader(System.in))
        val s = br.readLine().zipWithIndex
        val res = s.map{
             case (c,i) => 
             val a = (((c-'A')-(i+1))%26+26)%26
             (a+'A').toChar
        }
        res.foreach(print _)
        println()
    }
}
0