結果

問題 No.835 ジュース
ユーザー バカらっくバカらっく
提出日時 2022-02-03 12:26:48
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 10,571 ms
コンパイル使用メモリ 421,604 KB
実行使用メモリ 49,956 KB
最終ジャッジ日時 2024-06-11 09:47:31
合計ジャッジ時間 13,858 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
49,776 KB
testcase_01 AC 262 ms
49,760 KB
testcase_02 AC 266 ms
49,544 KB
testcase_03 AC 270 ms
49,768 KB
testcase_04 AC 270 ms
49,824 KB
testcase_05 AC 258 ms
49,808 KB
testcase_06 AC 263 ms
49,652 KB
testcase_07 AC 283 ms
49,956 KB
testcase_08 AC 285 ms
49,524 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toLong()
    val ans = (n*1.5).toLong()
    println(ans)
}
0