結果

問題 No.1337 Fair Otoshidama
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-01-15 21:47:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 13,952 ms
コンパイル使用メモリ 429,988 KB
実行使用メモリ 51,700 KB
最終ジャッジ日時 2024-05-04 23:20:21
合計ジャッジ時間 18,829 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
51,236 KB
testcase_01 AC 311 ms
51,264 KB
testcase_02 AC 315 ms
51,468 KB
testcase_03 AC 308 ms
51,400 KB
testcase_04 AC 294 ms
51,224 KB
testcase_05 AC 301 ms
51,608 KB
testcase_06 AC 291 ms
51,552 KB
testcase_07 AC 298 ms
51,500 KB
testcase_08 AC 294 ms
51,700 KB
testcase_09 AC 315 ms
51,656 KB
testcase_10 AC 304 ms
51,272 KB
testcase_11 AC 295 ms
51,268 KB
testcase_12 AC 300 ms
51,360 KB
testcase_13 AC 307 ms
51,248 KB
testcase_14 AC 309 ms
51,264 KB
testcase_15 AC 313 ms
51,336 KB
testcase_16 AC 300 ms
51,256 KB
testcase_17 AC 307 ms
51,276 KB
testcase_18 AC 301 ms
51,408 KB
testcase_19 AC 317 ms
51,508 KB
testcase_20 AC 305 ms
51,524 KB
testcase_21 AC 296 ms
51,464 KB
testcase_22 AC 289 ms
51,536 KB
testcase_23 AC 297 ms
51,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

import java.util.*

class Main(private val args : Array<String>) : Runnable {
    override fun run() {
        solve(args)
    }
    private fun solve(@Suppress("UNUSED_PARAMETER") args: Array<String>) {
        Scanner(System.`in`).use { sc ->
            val X = sc.nextLong()
            val Y = sc.nextLong()
            val Z = sc.nextLong()
            println(if ((X + Y + Z) % 3 == 0L) "Yes" else "No")
        }
    }
}

/** 確保するメモリの大きさ(単位: MB)  */
private const val MEMORY: Long = 64

fun main(args: Array<String>) {
    Thread.setDefaultUncaughtExceptionHandler { _: Thread?, e: Throwable ->
        e.printStackTrace()
        System.exit(1)
    }
    Thread(null, Main(args = args), "", MEMORY * 1048576L).start()
}
0