結果
問題 | No.207 世界のなんとか |
ユーザー | n_gojo |
提出日時 | 2020-04-09 11:32:08 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 771 bytes |
コンパイル時間 | 3,991 ms |
コンパイル使用メモリ | 74,536 KB |
実行使用メモリ | 54,536 KB |
最終ジャッジ日時 | 2024-07-22 10:23:56 |
合計ジャッジ時間 | 6,073 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 121 ms
54,056 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 119 ms
54,156 KB |
testcase_07 | AC | 116 ms
53,732 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 119 ms
41,304 KB |
testcase_17 | AC | 115 ms
41,292 KB |
testcase_18 | AC | 113 ms
41,492 KB |
ソースコード
import java.util.Scanner; public class No207 { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner sc = new Scanner(System.in); // int 1つ分を読み込む int a = sc.nextInt(); int b = sc.nextInt(); int ans = 0; for (int i = a; i<=b; i++) { int check = i; if (check%3==0) { System.out.println(check); } else { while (check > 0) { if (check%10 == 3) { System.out.println(check); break; } check /= 10; } } } } }