結果

問題 No.63 ポッキーゲーム
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2020-12-29 22:53:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 390 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 3,759 ms
コンパイル使用メモリ 74,996 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-10-06 06:10:40
合計ジャッジ時間 7,290 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,812 KB
testcase_01 AC 115 ms
41,424 KB
testcase_02 AC 104 ms
41,076 KB
testcase_03 AC 117 ms
41,280 KB
testcase_04 AC 126 ms
41,256 KB
testcase_05 AC 125 ms
41,060 KB
testcase_06 AC 102 ms
41,164 KB
testcase_07 AC 115 ms
41,008 KB
testcase_08 AC 113 ms
40,964 KB
testcase_09 AC 115 ms
41,016 KB
testcase_10 AC 108 ms
41,028 KB
testcase_11 AC 390 ms
41,040 KB
testcase_12 AC 122 ms
41,256 KB
testcase_13 AC 372 ms
41,340 KB
testcase_14 AC 111 ms
41,364 KB
testcase_15 AC 131 ms
41,268 KB
testcase_16 AC 128 ms
41,296 KB
testcase_17 AC 370 ms
41,252 KB
testcase_18 AC 121 ms
41,096 KB
testcase_19 AC 160 ms
40,852 KB
testcase_20 AC 132 ms
41,364 KB
testcase_21 AC 134 ms
41,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/289
public class Pockey63 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    int s1 = Integer.parseInt(sc.next());
    int s2 = Integer.parseInt(sc.next());
    int result = 0;
    while (s1 > s2 * 2) {
      s1 -= s2 * 2;
      if (s1 >= 0) {
        result += s2;
      }
    }
    // 標準出力に書き出す。
    System.out.println(result);
  }
}
0