結果
問題 | No.207 世界のなんとか |
ユーザー | core123 |
提出日時 | 2019-04-16 15:26:54 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 436 bytes |
コンパイル時間 | 2,033 ms |
コンパイル使用メモリ | 75,180 KB |
実行使用メモリ | 54,500 KB |
最終ジャッジ日時 | 2024-09-22 08:16:17 |
合計ジャッジ時間 | 5,295 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
53,896 KB |
testcase_01 | WA | - |
testcase_02 | AC | 120 ms
53,124 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 134 ms
54,144 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 131 ms
54,172 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 128 ms
54,140 KB |
testcase_18 | AC | 115 ms
52,824 KB |
ソースコード
import java.util.*; import java.util.stream.*; public class Main{ public static void main(String... args){ Scanner sc=new Scanner(System.in); long a=sc.nextLong(); long b=sc.nextLong(); for(long i=a;i<=b;i++){ if(isAttached3(i)){ System.out.println(i); } } } public static boolean isAttached3(long x){ String s=Long.toString(x); for(char c:s.toCharArray()){ if(c=='3')return true; } return false; } }