結果

問題 No.428 小数から逃げる夢
ユーザー Grenache
提出日時 2016-10-02 22:24:57
言語 Java
(openjdk 23)
結果
AC  
実行時間 149 ms / 1,000 ms
コード長 826 bytes
コンパイル時間 3,684 ms
コンパイル使用メモリ 79,136 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-11-21 13:10:49
合計ジャッジ時間 20,113 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 100
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.math.*;
import java.util.*;


public class Main_yukicoder428 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		BigDecimal d = new BigDecimal("0.1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991");

		int n = sc.nextInt();

		BigDecimal ret = d.multiply(BigDecimal.valueOf(n));

		pr.println(ret);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0