結果

問題 No.746 7の倍数
ユーザー x87asdfx87asdf
提出日時 2018-11-08 01:45:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 76,828 KB
実行使用メモリ 57,900 KB
最終ジャッジ日時 2024-11-20 20:56:51
合計ジャッジ時間 7,257 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,928 KB
testcase_01 AC 148 ms
54,988 KB
testcase_02 AC 133 ms
54,492 KB
testcase_03 AC 276 ms
57,864 KB
testcase_04 AC 155 ms
56,804 KB
testcase_05 AC 153 ms
57,460 KB
testcase_06 AC 182 ms
57,880 KB
testcase_07 AC 162 ms
57,492 KB
testcase_08 AC 183 ms
57,792 KB
testcase_09 AC 151 ms
57,368 KB
testcase_10 AC 150 ms
57,776 KB
testcase_11 AC 211 ms
57,560 KB
testcase_12 AC 246 ms
57,456 KB
testcase_13 AC 193 ms
57,844 KB
testcase_14 AC 213 ms
57,752 KB
testcase_15 AC 205 ms
57,696 KB
testcase_16 AC 219 ms
57,900 KB
testcase_17 AC 203 ms
57,888 KB
testcase_18 AC 195 ms
57,568 KB
testcase_19 AC 188 ms
57,736 KB
testcase_20 AC 164 ms
57,776 KB
testcase_21 AC 141 ms
57,608 KB
testcase_22 AC 232 ms
57,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        
        String pattern = "142857";
        String result = "0";
        
        if(n > 0) {
            result += "." + repeat(pattern, n/6);
            result += pattern.substring(0, n%6);
        }
        
        System.out.println(result);
    }
    
    public static String repeat(String str, int n) {
        String temp = "";
        for(int i=0;i<n;i++) {
            temp += str;
        }
        return temp;
    }
    
}
0