結果

問題 No.313 π
ユーザー ぴろずぴろず
提出日時 2015-12-06 01:39:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 274 ms / 5,000 ms
コード長 1,355 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 80,004 KB
実行使用メモリ 45,360 KB
最終ジャッジ日時 2024-09-14 15:00:18
合計ジャッジ時間 12,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
44,660 KB
testcase_01 AC 258 ms
44,228 KB
testcase_02 AC 256 ms
44,824 KB
testcase_03 AC 254 ms
44,692 KB
testcase_04 AC 250 ms
44,612 KB
testcase_05 AC 252 ms
44,752 KB
testcase_06 AC 257 ms
44,672 KB
testcase_07 AC 264 ms
44,736 KB
testcase_08 AC 261 ms
45,076 KB
testcase_09 AC 257 ms
44,308 KB
testcase_10 AC 267 ms
44,448 KB
testcase_11 AC 258 ms
44,360 KB
testcase_12 AC 266 ms
45,244 KB
testcase_13 AC 260 ms
45,124 KB
testcase_14 AC 258 ms
44,700 KB
testcase_15 AC 257 ms
44,180 KB
testcase_16 AC 270 ms
44,476 KB
testcase_17 AC 263 ms
44,448 KB
testcase_18 AC 255 ms
44,364 KB
testcase_19 AC 274 ms
44,828 KB
testcase_20 AC 259 ms
44,960 KB
testcase_21 AC 273 ms
44,708 KB
testcase_22 AC 268 ms
44,424 KB
testcase_23 AC 258 ms
44,756 KB
testcase_24 AC 250 ms
44,612 KB
testcase_25 AC 259 ms
44,912 KB
testcase_26 AC 267 ms
44,552 KB
testcase_27 AC 257 ms
44,492 KB
testcase_28 AC 258 ms
44,652 KB
testcase_29 AC 269 ms
45,360 KB
testcase_30 AC 250 ms
44,564 KB
testcase_31 AC 259 ms
44,636 KB
testcase_32 AC 252 ms
44,632 KB
testcase_33 AC 261 ms
44,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no313;

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

public class Main {
	public static final int MAX = 200000;
	
	public static void main(String[] args) {
		solve();
	}
	
	public static void solve() {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		String pi = s.substring(0, 1) + s.substring(2, s.length());
		long sum = 0;
		long weightedsum = 0;
		for(int i=0;i<=MAX;i++) {
			int d = pi.charAt(i) - '0';
			sum += d;
			weightedsum += d * (i+1);
		}
		long diff = sum - SUM;
		int index = (int) ((weightedsum - WEIGHTED_SUM) / diff - 1);
		int miss = pi.charAt(index) - '0';
		System.out.println(miss + " " + (miss + 10 - diff) % 10);
	}
	
	public static final long SUM = 899117;
	public static final long WEIGHTED_SUM = 89939722901L;
	public static void calc() {
		try {
			Scanner sc = new Scanner(new File("pi.txt"));
			sc.next();
			StringBuilder sb = new StringBuilder();
			sb.append("3");
			while(sb.length() <= MAX) {
				sb.append(sc.next());
			}
			String pi = sb.toString();
			long sum = 0;
			long weightedsum = 0;
			for(int i=0;i<=MAX;i++) {
				int d = pi.charAt(i) - '0';
				sum += d;
				weightedsum += d * (i+1);
			}
			System.out.println(sum);
			System.out.println(weightedsum);
			
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		}
		
	}

}
0