結果

問題 No.18 うーさー暗号
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-09-27 19:29:55
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 333 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 11,004 ms
コンパイル使用メモリ 433,820 KB
実行使用メモリ 53,788 KB
最終ジャッジ日時 2024-11-20 16:48:18
合計ジャッジ時間 16,311 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
50,820 KB
testcase_01 AC 317 ms
50,988 KB
testcase_02 AC 317 ms
50,840 KB
testcase_03 AC 332 ms
53,788 KB
testcase_04 AC 324 ms
51,368 KB
testcase_05 AC 325 ms
51,652 KB
testcase_06 AC 326 ms
52,404 KB
testcase_07 AC 331 ms
52,696 KB
testcase_08 AC 328 ms
53,416 KB
testcase_09 AC 333 ms
52,860 KB
testcase_10 AC 313 ms
50,836 KB
testcase_11 AC 318 ms
50,812 KB
testcase_12 AC 330 ms
52,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:6:15: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
		val a = 'A'.toInt()
              ^
Main.kt:8:15: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
		val t = ((c.toInt() - i - 1) % b + a) % b + a
              ^

ソースコード

diff #

fun main(args: Array<String>) {
	val S = readLine()!!
	var ans = ""

	S.forEachIndexed { i, c ->
		val a = 'A'.toInt()
		val b = ('A' .. 'Z').toList().size
		val t = ((c.toInt() - i - 1) % b + a) % b + a
		ans += t.toChar()
	}
	println(ans)
}
0