結果

問題 No.491 10^9+1と回文
ユーザー chocoruskchocorusk
提出日時 2020-10-04 13:54:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,859 bytes
コンパイル時間 2,462 ms
コンパイル使用メモリ 76,620 KB
実行使用メモリ 59,208 KB
最終ジャッジ日時 2023-09-26 17:06:42
合計ジャッジ時間 27,507 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
57,068 KB
testcase_01 AC 182 ms
56,772 KB
testcase_02 AC 176 ms
56,892 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 167 ms
54,628 KB
testcase_09 AC 182 ms
54,728 KB
testcase_10 AC 172 ms
56,800 KB
testcase_11 AC 174 ms
58,516 KB
testcase_12 WA -
testcase_13 AC 181 ms
56,800 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 182 ms
56,700 KB
testcase_17 AC 171 ms
56,552 KB
testcase_18 AC 170 ms
56,768 KB
testcase_19 WA -
testcase_20 AC 175 ms
56,780 KB
testcase_21 WA -
testcase_22 AC 170 ms
56,848 KB
testcase_23 WA -
testcase_24 AC 171 ms
56,876 KB
testcase_25 AC 170 ms
56,756 KB
testcase_26 AC 168 ms
54,988 KB
testcase_27 AC 172 ms
57,004 KB
testcase_28 AC 175 ms
56,860 KB
testcase_29 AC 170 ms
57,276 KB
testcase_30 WA -
testcase_31 AC 176 ms
57,084 KB
testcase_32 WA -
testcase_33 AC 169 ms
56,916 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 183 ms
56,800 KB
testcase_37 AC 180 ms
56,924 KB
testcase_38 AC 173 ms
56,692 KB
testcase_39 WA -
testcase_40 AC 169 ms
54,760 KB
testcase_41 WA -
testcase_42 AC 180 ms
56,788 KB
testcase_43 AC 167 ms
56,956 KB
testcase_44 AC 174 ms
56,800 KB
testcase_45 AC 175 ms
56,732 KB
testcase_46 WA -
testcase_47 AC 176 ms
56,864 KB
testcase_48 AC 170 ms
56,880 KB
testcase_49 AC 170 ms
56,604 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 184 ms
56,612 KB
testcase_53 AC 171 ms
56,796 KB
testcase_54 AC 173 ms
57,280 KB
testcase_55 AC 173 ms
56,928 KB
testcase_56 AC 171 ms
56,760 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 172 ms
57,412 KB
testcase_61 AC 170 ms
56,728 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 171 ms
56,780 KB
testcase_65 AC 174 ms
56,968 KB
testcase_66 AC 175 ms
56,944 KB
testcase_67 WA -
testcase_68 AC 173 ms
56,868 KB
testcase_69 AC 177 ms
56,708 KB
testcase_70 AC 182 ms
54,732 KB
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 AC 182 ms
56,812 KB
testcase_75 AC 181 ms
57,080 KB
testcase_76 AC 181 ms
56,556 KB
testcase_77 AC 171 ms
56,976 KB
testcase_78 WA -
testcase_79 WA -
testcase_80 AC 176 ms
56,800 KB
testcase_81 AC 180 ms
56,892 KB
testcase_82 AC 186 ms
56,768 KB
testcase_83 WA -
testcase_84 AC 170 ms
56,748 KB
testcase_85 WA -
testcase_86 AC 169 ms
56,992 KB
testcase_87 AC 170 ms
56,540 KB
testcase_88 AC 169 ms
56,832 KB
testcase_89 WA -
testcase_90 WA -
testcase_91 WA -
testcase_92 AC 173 ms
56,984 KB
testcase_93 WA -
testcase_94 WA -
testcase_95 AC 183 ms
58,656 KB
testcase_96 AC 190 ms
56,800 KB
testcase_97 WA -
testcase_98 WA -
testcase_99 WA -
testcase_100 WA -
testcase_101 WA -
testcase_102 WA -
testcase_103 WA -
testcase_104 WA -
testcase_105 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;
import java.util.NoSuchElementException;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		//FastScanner scanner=new FastScanner();
		PrintWriter out = new PrintWriter(System.out);
		int ans=0;
		long n=scanner.nextLong();
		for(long i=1; i<=9; i++) {
			if(i*1000000001<=n) ans++;
		}
		for(int i=1; i<=9999; i++) {
			if(i%10==0) continue;
			List<Integer> d=new ArrayList<Integer>();
			int x=i;
			while(x>0) {
				d.add(x%10);
				x/=10;
			}
			int a=i, p=1;
			for(int j=0; j<d.size(); j++) p*=10;
			for(int j=0; j<d.size(); j++) {
				a+=p*d.get(d.size()-1-j);
				p*=10;
			}
			if((long)a*1000000001<=n) ans++;
			for(int j=0; j<10; j++) {
				a=i; p=1;
				for(int k=0; k<d.size(); k++) p*=10;
				a+=p*j;
				p*=10;
				for(int k=0; k<d.size(); k++) {
					a+=p*d.get(d.size()-1-k);
					p*=10;
				}
				if((long)a*1000000001<=n) ans++;
			}
		}
		out.println(ans);
		out.close();
		scanner.close();
	}
}

class FastScanner {
	private final InputStream in = System.in;
	private final byte[] buffer = new byte[1024];
	private int ptr = 0;
	private int buflen = 0;

	private boolean hasNextByte() {
		if (ptr < buflen) {
			return true;
		} else {
			ptr = 0;
			try {
				buflen = in.read(buffer);
			} catch (IOException e) {
				e.printStackTrace();
			}
			if (buflen <= 0) {
				return false;
			}
		}
		return true;
	}

	private int readByte() {
		if (hasNextByte())
			return buffer[ptr++];
		else
			return -1;
	}

	private static boolean isPrintableChar(int c) {
		return 33 <= c && c <= 126;
	}

	public boolean hasNext() {
		while (hasNextByte() && !isPrintableChar(buffer[ptr]))
			ptr++;
		return hasNextByte();
	}

	public String next() {
		if (!hasNext())
			throw new NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		int b = readByte();
		while (isPrintableChar(b)) {
			sb.appendCodePoint(b);
			b = readByte();
		}
		return sb.toString();
	}

	public long nextLong() {
		if (!hasNext())
			throw new NoSuchElementException();
		long n = 0;
		boolean minus = false;
		int b = readByte();
		if (b == '-') {
			minus = true;
			b = readByte();
		}
		if (b < '0' || '9' < b) {
			throw new NumberFormatException();
		}
		while (true) {
			if ('0' <= b && b <= '9') {
				n *= 10;
				n += b - '0';
			} else if (b == -1 || !isPrintableChar(b)) {
				return minus ? -n : n;
			} else {
				throw new NumberFormatException();
			}
			b = readByte();
		}
	}

	public int nextInt() {
		long nl = nextLong();
		if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE)
			throw new NumberFormatException();
		return (int) nl;
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}
}
0