結果

問題 No.63 ポッキーゲーム
ユーザー UEUEUE66UEUEUE66
提出日時 2018-05-26 00:04:34
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,186 ms / 5,000 ms
コード長 330 bytes
コンパイル時間 7,966 ms
コンパイル使用メモリ 251,424 KB
実行使用メモリ 64,800 KB
最終ジャッジ日時 2024-06-30 07:17:47
合計ジャッジ時間 30,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 920 ms
64,776 KB
testcase_01 AC 908 ms
64,644 KB
testcase_02 AC 914 ms
64,712 KB
testcase_03 AC 907 ms
64,544 KB
testcase_04 AC 902 ms
64,680 KB
testcase_05 AC 913 ms
64,712 KB
testcase_06 AC 913 ms
64,568 KB
testcase_07 AC 908 ms
64,736 KB
testcase_08 AC 903 ms
64,628 KB
testcase_09 AC 918 ms
64,644 KB
testcase_10 AC 925 ms
64,372 KB
testcase_11 AC 1,186 ms
64,608 KB
testcase_12 AC 916 ms
64,732 KB
testcase_13 AC 1,181 ms
64,572 KB
testcase_14 AC 910 ms
64,532 KB
testcase_15 AC 917 ms
64,484 KB
testcase_16 AC 908 ms
64,732 KB
testcase_17 AC 1,179 ms
64,592 KB
testcase_18 AC 916 ms
64,800 KB
testcase_19 AC 951 ms
64,624 KB
testcase_20 AC 920 ms
64,632 KB
testcase_21 AC 947 ms
64,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object pokky {
  def main(args: Array[String]): Unit = {
    val sc = new Scanner(System.in)
    var l = sc.nextInt
    val k = sc.nextInt
    var y = 0
    var count = 0

    while(l > 0) {
      l = l - 2 * k
      if (l <= 0) {
        y = k * count
      }
      count += 1
    }
    println(y)
  }
}
0