結果

問題 No.746 7の倍数
ユーザー Mcpu3Mcpu3
提出日時 2018-10-19 23:30:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 2,448 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 47,976 KB
最終ジャッジ日時 2024-11-18 22:44:07
合計ジャッジ時間 8,673 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,288 KB
testcase_01 AC 130 ms
41,308 KB
testcase_02 AC 131 ms
41,308 KB
testcase_03 AC 302 ms
47,976 KB
testcase_04 AC 159 ms
41,680 KB
testcase_05 AC 169 ms
41,744 KB
testcase_06 AC 235 ms
44,544 KB
testcase_07 AC 196 ms
41,736 KB
testcase_08 AC 223 ms
45,728 KB
testcase_09 AC 195 ms
41,944 KB
testcase_10 AC 165 ms
40,288 KB
testcase_11 AC 255 ms
46,264 KB
testcase_12 AC 280 ms
47,884 KB
testcase_13 AC 255 ms
45,960 KB
testcase_14 AC 255 ms
45,656 KB
testcase_15 AC 243 ms
46,032 KB
testcase_16 AC 253 ms
45,824 KB
testcase_17 AC 241 ms
45,600 KB
testcase_18 AC 253 ms
45,552 KB
testcase_19 AC 243 ms
45,412 KB
testcase_20 AC 196 ms
41,984 KB
testcase_21 AC 181 ms
41,764 KB
testcase_22 AC 264 ms
46,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		sc.close();
		String tmp = "142857";
		if (N == 0) System.out.print(0);
		else {
			System.out.print("0.");
			for (int i = 0; i < N / 6; ++i) System.out.print(tmp);
			for (int i = 0; i < N % 6; ++i) System.out.print(tmp.charAt(i));
		}
	}
}
0