結果

問題 No.63 ポッキーゲーム
ユーザー (,,゚Д゚)TERIA な の で す(,,゚Д゚)TERIA な の で す
提出日時 2014-11-16 03:44:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 3,736 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-06-10 07:35:47
合計ジャッジ時間 7,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,280 KB
testcase_01 AC 132 ms
41,392 KB
testcase_02 AC 135 ms
41,412 KB
testcase_03 AC 130 ms
41,452 KB
testcase_04 WA -
testcase_05 AC 132 ms
41,316 KB
testcase_06 AC 131 ms
41,332 KB
testcase_07 AC 128 ms
41,304 KB
testcase_08 AC 132 ms
41,316 KB
testcase_09 AC 135 ms
41,472 KB
testcase_10 AC 135 ms
41,196 KB
testcase_11 AC 124 ms
40,148 KB
testcase_12 AC 136 ms
41,400 KB
testcase_13 WA -
testcase_14 AC 138 ms
41,552 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 142 ms
41,628 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();
		System.out.println(pocky-(pocky-(pocky/gnaw/2)*gnaw));
	}
}
0