結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー ks2mks2m
提出日時 2021-03-05 22:16:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-10-07 02:28:45
合計ジャッジ時間 6,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,080 KB
testcase_01 AC 126 ms
41,448 KB
testcase_02 AC 126 ms
41,376 KB
testcase_03 AC 125 ms
40,976 KB
testcase_04 AC 127 ms
41,288 KB
testcase_05 AC 127 ms
41,140 KB
testcase_06 AC 128 ms
41,076 KB
testcase_07 AC 126 ms
41,196 KB
testcase_08 AC 129 ms
41,276 KB
testcase_09 AC 130 ms
41,400 KB
testcase_10 AC 127 ms
41,016 KB
testcase_11 AC 126 ms
41,004 KB
testcase_12 AC 126 ms
41,392 KB
testcase_13 AC 147 ms
41,188 KB
testcase_14 AC 129 ms
41,288 KB
testcase_15 AC 130 ms
41,408 KB
testcase_16 AC 128 ms
41,192 KB
testcase_17 AC 127 ms
41,184 KB
testcase_18 AC 129 ms
41,116 KB
testcase_19 AC 127 ms
40,948 KB
testcase_20 AC 126 ms
41,260 KB
testcase_21 AC 127 ms
41,188 KB
testcase_22 AC 127 ms
41,324 KB
testcase_23 AC 112 ms
41,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		if (s.charAt(0) == '-') {
			System.out.println(0);
		} else if (s.length() < 3) {
			System.out.println(0);
		} else {
			System.out.println(s.substring(0, s.length() - 2));
		}
	}
}
0