結果

問題 No.63 ポッキーゲーム
ユーザー GBGB
提出日時 2018-04-10 20:10:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 369 ms / 5,000 ms
コード長 367 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 74,924 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-06-26 20:56:52
合計ジャッジ時間 6,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,836 KB
testcase_01 AC 131 ms
54,096 KB
testcase_02 AC 124 ms
53,864 KB
testcase_03 AC 129 ms
53,740 KB
testcase_04 AC 127 ms
54,072 KB
testcase_05 AC 128 ms
54,036 KB
testcase_06 AC 128 ms
54,036 KB
testcase_07 AC 128 ms
54,132 KB
testcase_08 AC 130 ms
53,912 KB
testcase_09 AC 128 ms
54,136 KB
testcase_10 AC 133 ms
53,908 KB
testcase_11 AC 364 ms
54,116 KB
testcase_12 AC 137 ms
54,228 KB
testcase_13 AC 369 ms
54,036 KB
testcase_14 AC 133 ms
53,972 KB
testcase_15 AC 138 ms
53,868 KB
testcase_16 AC 127 ms
54,080 KB
testcase_17 AC 354 ms
54,012 KB
testcase_18 AC 131 ms
54,016 KB
testcase_19 AC 163 ms
53,888 KB
testcase_20 AC 136 ms
54,176 KB
testcase_21 AC 139 ms
53,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main{
  public static void main(String[] args) throws IOException{

    Scanner scan=new Scanner(System.in);
    int l=Integer.parseInt(scan.next());
    int k=Integer.parseInt(scan.next());

    int count=0;
    while(l>2*k){
      l-=2*k;
      count++;
    }
    
    int yuu=k*count;
    System.out.println(yuu);
  }
}
0