結果

問題 No.746 7の倍数
ユーザー 37zigen37zigen
提出日時 2020-02-18 11:04:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 460 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 79,420 KB
実行使用メモリ 58,984 KB
最終ジャッジ日時 2024-10-06 15:27:51
合計ジャッジ時間 9,359 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,716 KB
testcase_01 AC 129 ms
54,152 KB
testcase_02 AC 132 ms
54,204 KB
testcase_03 AC 460 ms
58,776 KB
testcase_04 AC 127 ms
53,660 KB
testcase_05 AC 179 ms
56,644 KB
testcase_06 AC 291 ms
58,008 KB
testcase_07 AC 245 ms
58,136 KB
testcase_08 AC 276 ms
57,868 KB
testcase_09 AC 258 ms
58,040 KB
testcase_10 AC 165 ms
56,744 KB
testcase_11 AC 407 ms
58,512 KB
testcase_12 AC 414 ms
58,984 KB
testcase_13 AC 314 ms
57,964 KB
testcase_14 AC 357 ms
58,084 KB
testcase_15 AC 335 ms
58,300 KB
testcase_16 AC 331 ms
57,712 KB
testcase_17 AC 322 ms
58,280 KB
testcase_18 AC 339 ms
57,584 KB
testcase_19 AC 321 ms
57,724 KB
testcase_20 AC 236 ms
57,732 KB
testcase_21 AC 184 ms
56,884 KB
testcase_22 AC 449 ms
58,076 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(N==0?0:("0."+a));
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0