結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | matsuyoshi30 |
提出日時 | 2017-03-08 22:40:48 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 627 bytes |
コンパイル時間 | 2,129 ms |
コンパイル使用メモリ | 74,924 KB |
実行使用メモリ | 55,992 KB |
最終ジャッジ日時 | 2024-06-23 19:38:27 |
合計ジャッジ時間 | 5,260 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 140 ms
53,844 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 138 ms
54,032 KB |
testcase_13 | AC | 132 ms
54,296 KB |
testcase_14 | AC | 127 ms
54,044 KB |
testcase_15 | AC | 134 ms
53,464 KB |
testcase_16 | AC | 135 ms
54,040 KB |
ソースコード
import java.util.Scanner; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); String a = in.next(); String b = in.next(); boolean isA = false; boolean isB = false; for(int i=0; i<=12345; i++) { String str = String.valueOf(i); if(a.equals(str)) isA = true; if(b.equals(str)) isB = true; } if(isA && isB) System.out.println("OK"); else System.out.println("NO"); in.close(); } }