結果

問題 No.333 門松列を数え上げ
ユーザー yagi2yagi2
提出日時 2017-04-20 14:45:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-07-19 20:49:25
合計ジャッジ時間 5,584 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,276 KB
testcase_01 WA -
testcase_02 AC 116 ms
41,296 KB
testcase_03 AC 1,147 ms
41,224 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 199 ms
41,240 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

        long A = Integer.parseInt(sc.next());
        long B = Integer.parseInt(sc.next());

        long cnt = 0;
        if (A > B) {
            for (long i = 1; i < B; i++) {
                if (i == A) continue;
                cnt++;
            }
        } else {
            for (long i = 1; i < B; i++) {
                if (i == A) continue;
                cnt++;
            }
        }

        System.out.println(cnt);
    }
}
0