結果

問題 No.83 最大マッチング
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-26 22:40:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 268 ms / 5,000 ms
コード長 825 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 77,076 KB
実行使用メモリ 54,628 KB
最終ジャッジ日時 2024-09-13 12:50:49
合計ジャッジ時間 4,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
50,592 KB
testcase_01 AC 60 ms
50,300 KB
testcase_02 AC 59 ms
50,604 KB
testcase_03 AC 60 ms
50,636 KB
testcase_04 AC 62 ms
50,248 KB
testcase_05 AC 61 ms
50,444 KB
testcase_06 AC 61 ms
50,440 KB
testcase_07 AC 62 ms
50,620 KB
testcase_08 AC 62 ms
50,576 KB
testcase_09 AC 84 ms
54,060 KB
testcase_10 AC 182 ms
54,528 KB
testcase_11 AC 268 ms
54,628 KB
testcase_12 AC 267 ms
54,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.time.format.DateTimeFormatter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class Main {


    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int N = Integer.parseInt(reader.readLine());
        if (N % 2 == 0) {
            System.out.println(createSequenceOfOne(N));
        } else {
            System.out.println("7"+createSequenceOfOne(N-3));
        }
    }

    public static String createSequenceOfOne(int n) {
        int i = 0;
        String acc = "";
        while (i < n) {
            acc = acc + "1";
            i += 2;
        }
        return acc;
    }

}
0