結果
問題 | No.653 E869120 and Lucky Numbers |
ユーザー | eessmmnn52 |
提出日時 | 2018-05-31 09:52:25 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,768 bytes |
コンパイル時間 | 2,273 ms |
コンパイル使用メモリ | 79,368 KB |
実行使用メモリ | 46,140 KB |
最終ジャッジ日時 | 2024-06-30 08:30:28 |
合計ジャッジ時間 | 8,251 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 144 ms
41,536 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 166 ms
43,720 KB |
testcase_07 | AC | 138 ms
42,112 KB |
testcase_08 | WA | - |
testcase_09 | AC | 131 ms
41,376 KB |
testcase_10 | AC | 126 ms
41,244 KB |
testcase_11 | AC | 132 ms
41,376 KB |
testcase_12 | AC | 131 ms
41,388 KB |
testcase_13 | AC | 134 ms
41,224 KB |
testcase_14 | AC | 126 ms
41,128 KB |
testcase_15 | AC | 130 ms
41,148 KB |
testcase_16 | AC | 133 ms
41,288 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 126 ms
41,192 KB |
testcase_21 | AC | 131 ms
41,340 KB |
testcase_22 | AC | 130 ms
41,184 KB |
testcase_23 | AC | 133 ms
41,160 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 225 ms
46,140 KB |
testcase_29 | AC | 221 ms
45,668 KB |
testcase_30 | WA | - |
testcase_31 | AC | 130 ms
41,504 KB |
testcase_32 | AC | 118 ms
40,156 KB |
testcase_33 | AC | 132 ms
41,176 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner sc = new Scanner(System.in); String p = sc.next(); StringBuffer buf = new StringBuffer(p); String revStr = buf.reverse().toString(); // pを反転 String x = ""; String y = ""; for(int i = 0; i < revStr.length(); i++){ if(i == 0){ if(revStr.substring(i, i + 1).contains("2")){ x += "6"; y += "6"; }else if(revStr.substring(i, i + 1).contains("3")){ x += "7"; y += "6"; }else if(revStr.substring(i, i + 1).contains("4")){ x += "7"; y += "7"; }else{ System.out.println("No"); return; } }else if(i > 0){ if(revStr.substring(i, i + 1).contains("8")){ x += "7"; }else if(revStr.substring(i, i + 1).contains("7")){ x += "6"; }else if(revStr.substring(i, i + 1).contains("6")){ }else if(revStr.substring(i, i + 1).contains("5")){ x += "7"; y += "7"; }else if(revStr.substring(i, i + 1).contains("4")){ x += "7"; y += "6"; }else if(revStr.substring(i, i + 1).contains("3")){ x += "6"; y += "6"; }else if(revStr.substring(i, i + 1).contains("1")){ }else{ // System.out.println("x:" + x + ": y:" + y); System.out.println("No"); return; } } } // 検証用 // System.out.println("x:" + x + ": y:" + y); System.out.println("Yes"); } }