結果

問題 No.415 ぴょん
ユーザー deliciouscicadadeliciouscicada
提出日時 2016-09-22 09:48:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 3,494 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-11-17 11:16:46
合計ジャッジ時間 7,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,228 KB
testcase_01 AC 112 ms
40,780 KB
testcase_02 AC 124 ms
41,080 KB
testcase_03 AC 115 ms
41,212 KB
testcase_04 WA -
testcase_05 AC 104 ms
40,060 KB
testcase_06 WA -
testcase_07 AC 127 ms
41,100 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 103 ms
39,844 KB
testcase_11 WA -
testcase_12 AC 116 ms
41,112 KB
testcase_13 AC 119 ms
40,852 KB
testcase_14 AC 115 ms
41,048 KB
testcase_15 AC 119 ms
40,840 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 119 ms
40,980 KB
testcase_21 AC 108 ms
39,976 KB
testcase_22 AC 118 ms
40,984 KB
testcase_23 WA -
testcase_24 AC 116 ms
40,932 KB
testcase_25 AC 123 ms
41,180 KB
testcase_26 AC 120 ms
41,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No415_pyon {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		// 足場の数
		int stepNum = sc.nextInt();

		// ジャンプ間隔の数
		int stepInterval = sc.nextInt();

		// ジャンプ可能回数
		int maxStepNum = 0;

		if(stepNum % stepInterval == 0) {
			// 足場の数がジャンプ間隔で割り切れる場合
			maxStepNum = stepNum / stepInterval - 1;

		} else {
			maxStepNum = stepNum - 1;

		}

		// 結果の表示
		System.out.println(maxStepNum);
	}
}
0