結果

問題 No.746 7の倍数
ユーザー htensaihtensai
提出日時 2019-12-10 01:24:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 2,061 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-06-23 12:00:48
合計ジャッジ時間 6,292 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,024 KB
testcase_01 AC 129 ms
53,812 KB
testcase_02 AC 129 ms
54,052 KB
testcase_03 AC 128 ms
52,808 KB
testcase_04 AC 131 ms
53,752 KB
testcase_05 AC 153 ms
54,268 KB
testcase_06 AC 139 ms
54,176 KB
testcase_07 AC 155 ms
54,052 KB
testcase_08 AC 159 ms
53,980 KB
testcase_09 AC 156 ms
54,212 KB
testcase_10 AC 137 ms
53,932 KB
testcase_11 AC 154 ms
54,076 KB
testcase_12 AC 157 ms
54,296 KB
testcase_13 AC 139 ms
54,120 KB
testcase_14 AC 144 ms
54,204 KB
testcase_15 AC 141 ms
54,160 KB
testcase_16 AC 147 ms
54,076 KB
testcase_17 AC 158 ms
54,084 KB
testcase_18 AC 146 ms
54,180 KB
testcase_19 AC 142 ms
53,836 KB
testcase_20 AC 139 ms
54,060 KB
testcase_21 AC 142 ms
53,964 KB
testcase_22 AC 146 ms
53,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
   public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        if (n == 0) {
            System.out.println(0);
            return;
        }
        StringBuilder sb = new StringBuilder("0.");
        int cur = 10;
        for (int i = 0; i < n; i++) {
            sb.append(cur / 7);
            cur = (cur % 7) * 10;
        }
        System.out.println(sb);
    }
}
0