結果

問題 No.653 E869120 and Lucky Numbers
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-23 23:04:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 682 bytes
コンパイル時間 2,383 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-10-10 02:07:12
合計ジャッジ時間 8,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,400 KB
testcase_01 AC 142 ms
41,120 KB
testcase_02 AC 146 ms
41,136 KB
testcase_03 AC 146 ms
41,108 KB
testcase_04 AC 139 ms
41,516 KB
testcase_05 AC 139 ms
41,256 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 151 ms
41,276 KB
testcase_09 AC 130 ms
41,172 KB
testcase_10 AC 135 ms
41,316 KB
testcase_11 AC 131 ms
41,132 KB
testcase_12 AC 129 ms
41,160 KB
testcase_13 AC 134 ms
41,232 KB
testcase_14 AC 132 ms
41,292 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 131 ms
41,564 KB
testcase_18 AC 132 ms
41,136 KB
testcase_19 AC 131 ms
41,100 KB
testcase_20 AC 138 ms
41,208 KB
testcase_21 AC 133 ms
41,128 KB
testcase_22 AC 131 ms
40,952 KB
testcase_23 AC 134 ms
40,980 KB
testcase_24 AC 133 ms
41,180 KB
testcase_25 AC 131 ms
41,008 KB
testcase_26 AC 133 ms
41,120 KB
testcase_27 AC 115 ms
39,992 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 151 ms
41,652 KB
testcase_31 AC 131 ms
41,200 KB
testcase_32 AC 116 ms
39,996 KB
testcase_33 AC 131 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		System.out.println(judge(s)==true?"Yes":"No");
	}
	
	static boolean judge (String s) {
		if (s.length()==1) {
			if (s.matches("[67]")==false) {return false;}
		}
		else {
			for (int i=0; i<s.length(); i++) {
				if (i==0) {
					if (s.charAt(0)!='1') {return false;}
				}
				else if (i==s.length()-1) {
					char c = s.charAt(s.length()-1);
					if (c!='2' && c!='3' && c!='4') {return false;}
				}
				else {
					char c = s.charAt(i);
					if (c!='3' && c!='4' && c!='5') {return false;}
				}
			}
		}
		return true;
	}
}
0