結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー tkmt-akrtkmt-akr
提出日時 2021-03-22 04:30:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 55,772 KB
最終ジャッジ日時 2024-05-02 11:48:30
合計ジャッジ時間 5,860 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,816 KB
testcase_01 WA -
testcase_02 AC 113 ms
53,956 KB
testcase_03 AC 122 ms
53,900 KB
testcase_04 AC 116 ms
53,988 KB
testcase_05 RE -
testcase_06 AC 113 ms
52,940 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 WA -
testcase_13 AC 114 ms
52,744 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 118 ms
53,932 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 WA -
testcase_21 AC 116 ms
53,932 KB
testcase_22 AC 114 ms
53,588 KB
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args ) throws Exception {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        
        if(N % 100 == 0){
            int M = N / 100;
            System.out.println(M);
        }else{
            System.out.println(0);
        }
    }
}
0