結果

問題 No.244 ★1のグラフの問題
ユーザー javyjavy
提出日時 2015-11-13 02:04:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 12,063 ms
コンパイル使用メモリ 421,400 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-11-19 21:17:41
合計ジャッジ時間 15,922 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
54,304 KB
testcase_01 AC 287 ms
54,128 KB
testcase_02 AC 293 ms
54,112 KB
testcase_03 AC 290 ms
54,108 KB
testcase_04 AC 285 ms
54,024 KB
testcase_05 AC 293 ms
53,988 KB
testcase_06 AC 291 ms
54,120 KB
testcase_07 AC 294 ms
53,996 KB
testcase_08 AC 294 ms
54,004 KB
testcase_09 AC 287 ms
54,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/12.
 */
fun main(args: Array<String>) {
    fun readLineLong(): Long {
        val str = readLine() as String
        return str.toLong()
    }
    println(readLineLong()-1.toLong())
}
0