結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー tentententen
提出日時 2021-03-06 14:08:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 1,777 ms
コンパイル使用メモリ 74,076 KB
実行使用メモリ 41,260 KB
最終ジャッジ日時 2024-10-08 12:50:26
合計ジャッジ時間 5,057 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,176 KB
testcase_01 AC 96 ms
40,148 KB
testcase_02 AC 96 ms
40,160 KB
testcase_03 AC 101 ms
40,064 KB
testcase_04 AC 102 ms
40,160 KB
testcase_05 AC 108 ms
41,048 KB
testcase_06 AC 97 ms
39,868 KB
testcase_07 AC 98 ms
39,868 KB
testcase_08 AC 99 ms
40,400 KB
testcase_09 AC 99 ms
39,952 KB
testcase_10 AC 107 ms
40,896 KB
testcase_11 AC 107 ms
41,108 KB
testcase_12 AC 105 ms
41,008 KB
testcase_13 AC 108 ms
40,976 KB
testcase_14 AC 106 ms
41,116 KB
testcase_15 AC 107 ms
41,260 KB
testcase_16 AC 96 ms
39,744 KB
testcase_17 AC 96 ms
40,176 KB
testcase_18 AC 96 ms
40,160 KB
testcase_19 AC 101 ms
40,388 KB
testcase_20 AC 108 ms
41,036 KB
testcase_21 AC 96 ms
39,952 KB
testcase_22 AC 106 ms
40,936 KB
testcase_23 AC 96 ms
40,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        if (s.charAt(0) == '-' || s.length() <= 2) {
            System.out.println(0);
        } else {
            System.out.println(s.substring(0, s.length() - 2));
        }
    }
}
0