結果
問題 | No.207 世界のなんとか |
ユーザー | Gchansanjou |
提出日時 | 2018-02-11 14:41:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,353 bytes |
コンパイル時間 | 4,228 ms |
コンパイル使用メモリ | 77,636 KB |
実行使用メモリ | 52,212 KB |
最終ジャッジ日時 | 2024-04-28 00:52:23 |
合計ジャッジ時間 | 6,354 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 48 ms
50,288 KB |
testcase_04 | AC | 44 ms
50,228 KB |
testcase_05 | WA | - |
testcase_06 | AC | 45 ms
49,816 KB |
testcase_07 | AC | 45 ms
50,032 KB |
testcase_08 | AC | 44 ms
50,228 KB |
testcase_09 | AC | 46 ms
50,212 KB |
testcase_10 | WA | - |
testcase_11 | AC | 56 ms
49,980 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 47 ms
50,392 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 45 ms
50,440 KB |
ソースコード
package yukiCoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No00207 { public static void main(String[] args) { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); String[] input = new String[2]; try { input = bufferedReader.readLine().split(" "); int start = Integer.parseInt(input[0]); int end = Integer.parseInt(input[1]); calculation(start,end); } catch (IOException e) { e.printStackTrace(); } } public static void calculation(int start, int end) { if (start >= end) { return; } for (; start < end ; start++) { if (isMultipleOfThree(start) || isDigitIncludingThree(start)) { System.out.println(start); } } } public static Boolean isMultipleOfThree(int input) { int fullDigitAns = 0; String check = String.valueOf(input); for (int i = 0 ; i < check.length() ; i++) { int digit = Integer.parseInt(String.valueOf(check.charAt(i))); fullDigitAns += digit; } return fullDigitAns%3 == 0 ? true : false; } public static Boolean isDigitIncludingThree(int input) { String check = String.valueOf(input); for (int i = 0 ; i < check.length() ; i++) { int digit = Integer.parseInt(String.valueOf(check.charAt(i))); if (digit == 3) return true; } return false; } }