結果

問題 No.835 ジュース
ユーザー バカらっくバカらっく
提出日時 2022-02-03 12:26:48
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 10,657 ms
コンパイル使用メモリ 407,224 KB
実行使用メモリ 50,608 KB
最終ジャッジ日時 2023-09-02 03:09:33
合計ジャッジ時間 14,019 ms
ジャッジサーバーID
(参考情報)
judge16 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
50,356 KB
testcase_01 AC 262 ms
50,344 KB
testcase_02 AC 258 ms
50,244 KB
testcase_03 AC 265 ms
50,504 KB
testcase_04 AC 265 ms
50,216 KB
testcase_05 AC 261 ms
50,248 KB
testcase_06 AC 260 ms
50,608 KB
testcase_07 AC 262 ms
50,416 KB
testcase_08 AC 268 ms
50,436 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