結果

問題 No.653 E869120 and Lucky Numbers
ユーザー tetsutetsu
提出日時 2018-02-23 23:46:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 2,692 bytes
コンパイル時間 3,821 ms
コンパイル使用メモリ 76,452 KB
実行使用メモリ 50,788 KB
最終ジャッジ日時 2023-10-11 19:25:12
合計ジャッジ時間 6,829 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
49,352 KB
testcase_01 AC 49 ms
49,352 KB
testcase_02 AC 49 ms
49,296 KB
testcase_03 AC 50 ms
49,516 KB
testcase_04 AC 48 ms
49,396 KB
testcase_05 AC 48 ms
49,372 KB
testcase_06 AC 49 ms
49,360 KB
testcase_07 AC 47 ms
49,868 KB
testcase_08 AC 49 ms
49,548 KB
testcase_09 AC 44 ms
49,352 KB
testcase_10 AC 45 ms
49,576 KB
testcase_11 AC 45 ms
49,340 KB
testcase_12 AC 45 ms
49,448 KB
testcase_13 AC 45 ms
49,256 KB
testcase_14 AC 44 ms
49,340 KB
testcase_15 AC 45 ms
49,648 KB
testcase_16 AC 45 ms
49,396 KB
testcase_17 AC 45 ms
49,432 KB
testcase_18 AC 45 ms
49,592 KB
testcase_19 AC 44 ms
49,284 KB
testcase_20 AC 45 ms
49,388 KB
testcase_21 AC 44 ms
49,432 KB
testcase_22 AC 45 ms
49,340 KB
testcase_23 AC 44 ms
49,856 KB
testcase_24 AC 45 ms
49,396 KB
testcase_25 AC 44 ms
49,256 KB
testcase_26 AC 43 ms
49,476 KB
testcase_27 AC 44 ms
49,796 KB
testcase_28 AC 60 ms
50,788 KB
testcase_29 AC 59 ms
50,568 KB
testcase_30 AC 59 ms
50,656 KB
testcase_31 AC 44 ms
49,260 KB
testcase_32 AC 44 ms
49,328 KB
testcase_33 AC 44 ms
49,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.*;

public class C {
	static Random rg = new Random();

	public static void main(String[] args) throws IOException {
		MyScanner sc = new MyScanner(System.in);
//		String p = random();
//		System.out.println(p);
		String p = sc.next();
		if(p.length()==1) {
			System.out.println("No");
			return;
		}
		int[] ds = new int[20000];
		for(int i=0; i<p.length(); i++) {
			ds[i] = Character.getNumericValue(p.charAt(p.length()-1-i));
		}
		for(int i=0; i<p.length(); i++) {
			if(i==p.length()-1) {
				if(ds[i]==0 || ds[i]==7 || ds[i]==6) {
					System.out.println("Yes");
					return;
				} else {
					System.out.println("No");
					return;
				}
			}
			if(i==0) {
				if(ds[i]==2||ds[i]==3||ds[i]==4) {
					if(ds[i+1]>=1) {
						ds[i+1]--;
						continue;
					} else {
						System.out.println("No");
						return;
					}
				} else {
					System.out.println("No");
					return;
				}	
			}
			if(ds[i]==2||ds[i]==3||ds[i]==4) {
				if(ds[i+1]>=1) {
					ds[i+1]--;
				} else {
					System.out.println("No");
					return;
				}
			} else if(ds[i]==6||ds[i]==7) {
				for(int j=i; j<p.length(); j++) {
					if(ds[j]!=6&&ds[j]!=7) {
						System.out.println("No");
						return;
					}
				}
				System.out.println("Yes");
				return;
			} else {
				System.out.println("No");
				return;
			}			
		}
	}
	
	static String random() {
		int t1 = rg.nextInt(10);
		long a1 = 7;
		for(int i=0; i<t1; i++) {
			int test = rg.nextInt();
			a1 = a1*10;
			if(test%2==0) {
				a1 += 6;
			} else {
				a1 += 7;
			}
		}
		int t2 = rg.nextInt(10);
		long a2 = 6;
		for(int i=0; i<t2; i++) {
			int test = rg.nextInt();
			a2= a2*10;
			if(test%2==0) {
				a2 += 6;
			} else {
				a2 += 7;
			}
		}
		System.out.println("a1=" + a1 + ",a2="+a2);
		return Long.toString(a1+a2);
	}

	static class MyScanner
	{
		BufferedReader br;
		StringTokenizer st;
		public MyScanner(InputStream s)
		{
			br=new BufferedReader(new InputStreamReader(s));
		}
		public String nextLine() throws IOException
		{
			return br.readLine();
		}
		public String next() throws IOException
		{
			while(st==null || !st.hasMoreTokens())
				st=new StringTokenizer(br.readLine());
			return st.nextToken();
		}
		public int nextInt() throws IOException
		{
			return Integer.parseInt(next());
			
		}
		public double nextDouble() throws IOException
		{
			return Double.parseDouble(next());
		}
		public boolean ready() throws IOException
		{
			return br.ready();
		}
		public long nextLong() throws IOException
		{
			return Long.parseLong(next());
		}
	}
}
0