結果

問題 No.1915 Addition
ユーザー ripityripity
提出日時 2022-05-04 23:02:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 11,976 ms
コンパイル使用メモリ 426,432 KB
実行使用メモリ 49,908 KB
最終ジャッジ日時 2024-07-04 01:39:35
合計ジャッジ時間 15,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
49,696 KB
testcase_01 AC 261 ms
49,540 KB
testcase_02 AC 266 ms
49,836 KB
testcase_03 AC 258 ms
49,800 KB
testcase_04 AC 268 ms
49,768 KB
testcase_05 AC 281 ms
49,856 KB
testcase_06 AC 263 ms
49,728 KB
testcase_07 AC 265 ms
49,792 KB
testcase_08 AC 247 ms
49,664 KB
testcase_09 AC 260 ms
49,800 KB
testcase_10 AC 263 ms
49,908 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:8:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.io.*
import java.util.*
import kotlin.math.*

val pw = PrintWriter(System.out, false)
val br = System.`in`.bufferedReader()

fun main(args: Array<String>) {
    
    val T = br.readLine()!!.toInt()
    repeat(T) {solve()}
    pw.flush()
    
}

fun solve() {
    
    val N = br.readLine()!!.toLong();
    pw.println(N*8L)
    
}
0