結果

問題 No.671 1000000007
ユーザー ichibanshiboriichibanshibori
提出日時 2018-04-29 01:04:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 11,165 ms
コンパイル使用メモリ 408,740 KB
実行使用メモリ 50,552 KB
最終ジャッジ日時 2023-08-12 23:28:28
合計ジャッジ時間 15,764 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
50,188 KB
testcase_01 AC 271 ms
50,460 KB
testcase_02 AC 270 ms
50,216 KB
testcase_03 AC 268 ms
50,168 KB
testcase_04 AC 270 ms
50,312 KB
testcase_05 AC 267 ms
50,076 KB
testcase_06 AC 271 ms
50,172 KB
testcase_07 AC 265 ms
50,188 KB
testcase_08 AC 259 ms
50,552 KB
testcase_09 AC 263 ms
50,232 KB
testcase_10 AC 260 ms
50,336 KB
testcase_11 AC 261 ms
50,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^

ソースコード

diff #

import kotlin.math.abs

fun main(args : Array<String>) {
	val S = readLine() ?: ""
	
	println(abs(S.length - 10))
}
0