結果

問題 No.746 7の倍数
ユーザー GrenacheGrenache
提出日時 2019-04-28 14:21:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 4,087 ms
コンパイル使用メモリ 75,396 KB
実行使用メモリ 41,912 KB
最終ジャッジ日時 2024-12-16 04:36:23
合計ジャッジ時間 8,477 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,052 KB
testcase_01 AC 137 ms
41,244 KB
testcase_02 AC 135 ms
41,360 KB
testcase_03 AC 167 ms
41,868 KB
testcase_04 AC 140 ms
41,104 KB
testcase_05 AC 146 ms
41,500 KB
testcase_06 AC 149 ms
41,732 KB
testcase_07 AC 147 ms
41,756 KB
testcase_08 AC 149 ms
41,424 KB
testcase_09 AC 151 ms
41,548 KB
testcase_10 AC 147 ms
41,912 KB
testcase_11 AC 153 ms
41,316 KB
testcase_12 AC 155 ms
41,756 KB
testcase_13 AC 157 ms
41,696 KB
testcase_14 AC 139 ms
40,192 KB
testcase_15 AC 160 ms
41,808 KB
testcase_16 AC 159 ms
41,784 KB
testcase_17 AC 146 ms
40,792 KB
testcase_18 AC 153 ms
41,356 KB
testcase_19 AC 156 ms
41,684 KB
testcase_20 AC 153 ms
41,368 KB
testcase_21 AC 147 ms
41,444 KB
testcase_22 AC 141 ms
40,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder746 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();

		if (n == 0) {
			pr.println(0);
		} else {
			String s7 = "142857";
			
			StringBuilder sb = new StringBuilder();
			sb.append("0.");
			for (int i = 0; i < n; i++) {
				sb.append(s7.charAt(i % s7.length()));
			}
			
			pr.println(sb);
		}
	}

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

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