結果
問題 | No.207 世界のなんとか |
ユーザー | Suunn |
提出日時 | 2018-11-22 09:25:34 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 412 bytes |
コンパイル時間 | 2,322 ms |
コンパイル使用メモリ | 74,196 KB |
実行使用メモリ | 46,172 KB |
最終ジャッジ日時 | 2024-06-06 21:45:19 |
合計ジャッジ時間 | 14,867 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import java.util.Scanner; public class Main{ public static void main(String args[])throws Exception{ Scanner sc = new Scanner(System.in); int A = sc.nextInt(); int B = sc.nextInt(); for(int i=A;i<=B;i++){ if(i%3==0||contain3(i)){ System.out.println(i); } } } private static boolean contain3(int i) { while(i>1){ if(i%10==3){ return true; } } return false; } }