結果

問題 No.653 E869120 and Lucky Numbers
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-23 23:08:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 2,488 ms
コンパイル使用メモリ 78,980 KB
実行使用メモリ 53,828 KB
最終ジャッジ日時 2024-10-10 02:16:45
合計ジャッジ時間 8,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,040 KB
testcase_01 AC 148 ms
41,516 KB
testcase_02 AC 148 ms
41,204 KB
testcase_03 AC 152 ms
40,964 KB
testcase_04 AC 141 ms
41,124 KB
testcase_05 AC 142 ms
41,580 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 150 ms
41,360 KB
testcase_09 AC 138 ms
41,232 KB
testcase_10 AC 133 ms
41,416 KB
testcase_11 AC 130 ms
41,064 KB
testcase_12 AC 132 ms
41,316 KB
testcase_13 AC 135 ms
41,264 KB
testcase_14 AC 134 ms
41,276 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 131 ms
41,224 KB
testcase_18 AC 138 ms
41,240 KB
testcase_19 AC 132 ms
41,120 KB
testcase_20 AC 133 ms
41,064 KB
testcase_21 AC 135 ms
41,136 KB
testcase_22 AC 132 ms
41,120 KB
testcase_23 AC 136 ms
40,988 KB
testcase_24 AC 132 ms
41,144 KB
testcase_25 AC 129 ms
41,136 KB
testcase_26 AC 131 ms
41,200 KB
testcase_27 AC 138 ms
41,136 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 152 ms
41,420 KB
testcase_31 AC 142 ms
40,944 KB
testcase_32 AC 134 ms
41,224 KB
testcase_33 AC 135 ms
41,324 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) {
			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