結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,300 KB
testcase_01 AC 135 ms
41,176 KB
testcase_02 AC 137 ms
41,148 KB
testcase_03 AC 165 ms
42,100 KB
testcase_04 AC 140 ms
41,216 KB
testcase_05 AC 145 ms
41,716 KB
testcase_06 AC 158 ms
41,528 KB
testcase_07 AC 148 ms
41,444 KB
testcase_08 AC 161 ms
41,736 KB
testcase_09 AC 150 ms
41,396 KB
testcase_10 AC 145 ms
41,472 KB
testcase_11 AC 161 ms
41,800 KB
testcase_12 AC 165 ms
42,268 KB
testcase_13 AC 158 ms
41,808 KB
testcase_14 AC 156 ms
41,548 KB
testcase_15 AC 158 ms
41,588 KB
testcase_16 AC 155 ms
41,496 KB
testcase_17 AC 158 ms
41,536 KB
testcase_18 AC 153 ms
41,440 KB
testcase_19 AC 150 ms
41,584 KB
testcase_20 AC 144 ms
41,536 KB
testcase_21 AC 147 ms
41,232 KB
testcase_22 AC 165 ms
41,648 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