結果

問題 No.63 ポッキーゲーム
ユーザー (,,゚Д゚)TERIA な の で す(,,゚Д゚)TERIA な の で す
提出日時 2014-11-16 04:33:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 398 bytes
コンパイル時間 3,392 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-06-06 12:54:58
合計ジャッジ時間 7,268 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,348 KB
testcase_01 AC 135 ms
41,172 KB
testcase_02 AC 133 ms
41,112 KB
testcase_03 AC 135 ms
41,348 KB
testcase_04 AC 131 ms
41,336 KB
testcase_05 AC 133 ms
41,176 KB
testcase_06 AC 129 ms
41,280 KB
testcase_07 AC 133 ms
41,532 KB
testcase_08 AC 133 ms
41,508 KB
testcase_09 AC 136 ms
41,304 KB
testcase_10 AC 134 ms
41,296 KB
testcase_11 AC 134 ms
41,388 KB
testcase_12 AC 132 ms
41,368 KB
testcase_13 AC 133 ms
41,488 KB
testcase_14 AC 120 ms
39,844 KB
testcase_15 AC 132 ms
41,240 KB
testcase_16 AC 134 ms
41,300 KB
testcase_17 AC 134 ms
41,448 KB
testcase_18 AC 135 ms
41,276 KB
testcase_19 AC 135 ms
41,696 KB
testcase_20 AC 129 ms
41,244 KB
testcase_21 AC 133 ms
41,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Kyosaya{
	public static void main(String args[])
	{
		Scanner s=new Scanner(System.in);
		int pocky = s.nextInt();
		int gnaw = s.nextInt();
		if(gnaw*2>= pocky){
			System.out.println(0);
		}else{
			int result = pocky-(pocky-(pocky/gnaw/2)*gnaw);
				if(result*2 == pocky){
					result= result - gnaw;
				}
		System.out.println(result);
		}
	}
}
0