結果

問題 No.746 7の倍数
ユーザー tentententen
提出日時 2020-10-14 13:17:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 41,972 KB
最終ジャッジ日時 2024-07-20 19:06:07
合計ジャッジ時間 6,747 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,592 KB
testcase_01 AC 138 ms
41,096 KB
testcase_02 AC 135 ms
41,524 KB
testcase_03 AC 161 ms
41,688 KB
testcase_04 AC 138 ms
41,272 KB
testcase_05 AC 147 ms
41,680 KB
testcase_06 AC 158 ms
41,440 KB
testcase_07 AC 158 ms
41,708 KB
testcase_08 AC 168 ms
41,504 KB
testcase_09 AC 146 ms
41,520 KB
testcase_10 AC 146 ms
41,260 KB
testcase_11 AC 156 ms
41,700 KB
testcase_12 AC 164 ms
41,972 KB
testcase_13 AC 146 ms
41,344 KB
testcase_14 AC 164 ms
41,716 KB
testcase_15 AC 168 ms
41,636 KB
testcase_16 AC 161 ms
41,572 KB
testcase_17 AC 151 ms
41,708 KB
testcase_18 AC 152 ms
41,432 KB
testcase_19 AC 147 ms
41,640 KB
testcase_20 AC 160 ms
41,452 KB
testcase_21 AC 143 ms
41,492 KB
testcase_22 AC 164 ms
41,416 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 base = 1;
    	for (int i = 1; i <= n; i++) {
    	    base *= 10;
    	    sb.append(base / 7);
    	    base %= 7;
    	}
    	System.out.println(sb);
	}
}
0