結果

問題 No.746 7の倍数
ユーザー 37zigen37zigen
提出日時 2020-02-18 11:03:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 81,460 KB
実行使用メモリ 47,888 KB
最終ジャッジ日時 2024-10-06 15:27:21
合計ジャッジ時間 11,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 134 ms
41,004 KB
testcase_02 AC 135 ms
41,520 KB
testcase_03 AC 501 ms
47,772 KB
testcase_04 AC 155 ms
41,820 KB
testcase_05 AC 183 ms
43,032 KB
testcase_06 AC 307 ms
46,768 KB
testcase_07 AC 276 ms
46,384 KB
testcase_08 AC 316 ms
46,420 KB
testcase_09 AC 283 ms
46,556 KB
testcase_10 AC 202 ms
43,676 KB
testcase_11 AC 460 ms
47,624 KB
testcase_12 AC 495 ms
47,684 KB
testcase_13 AC 358 ms
46,888 KB
testcase_14 AC 379 ms
47,500 KB
testcase_15 AC 373 ms
47,284 KB
testcase_16 AC 391 ms
47,516 KB
testcase_17 AC 356 ms
47,888 KB
testcase_18 AC 404 ms
47,432 KB
testcase_19 AC 366 ms
46,696 KB
testcase_20 AC 275 ms
46,604 KB
testcase_21 AC 224 ms
44,232 KB
testcase_22 AC 490 ms
47,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		BigInteger a=BigInteger.valueOf(10).pow(N);
		a=a.divide(BigInteger.valueOf(7));
		System.out.println("0."+a);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0