結果

問題 No.593 4進FizzBuzz
ユーザー arbtarbt
提出日時 2017-11-11 07:55:41
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 440 bytes
コンパイル時間 11,029 ms
コンパイル使用メモリ 435,516 KB
実行使用メモリ 80,480 KB
最終ジャッジ日時 2024-04-30 16:22:43
合計ジャッジ時間 29,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
55,260 KB
testcase_01 AC 333 ms
55,288 KB
testcase_02 AC 336 ms
55,516 KB
testcase_03 AC 338 ms
55,188 KB
testcase_04 AC 336 ms
55,360 KB
testcase_05 AC 332 ms
55,284 KB
testcase_06 AC 331 ms
55,304 KB
testcase_07 AC 336 ms
55,180 KB
testcase_08 AC 335 ms
55,112 KB
testcase_09 AC 339 ms
55,280 KB
testcase_10 AC 330 ms
55,188 KB
testcase_11 AC 331 ms
55,164 KB
testcase_12 AC 331 ms
55,296 KB
testcase_13 AC 334 ms
55,268 KB
testcase_14 AC 328 ms
55,320 KB
testcase_15 AC 334 ms
55,272 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:26:11: warning: parameter 'argv' is never used
fun main( argv : Array<String> ) {
          ^

ソースコード

diff #

import java.util.Scanner

//
fun _Do() {
    
    val N4 = scan.nextInt()
    var _N4 = N4
    var x = 0
    var mul = 1
    while(_N4>0) {
        x += ((_N4 % 10) * mul)
        mul *= 4
        _N4 /= 10
    }
    
    println(when{
        x % 15 == 0 -> "FizzBuzz"
        x % 3 == 0 -> "Fizz"
        x % 5 == 0 -> "Buzz"
        else -> N4
    })
    
}
var scan = Scanner(System.`in`)
fun main( argv : Array<String> ) {
    _Do()
}
0