結果

問題 No.83 最大マッチング
ユーザー atkrymatkrym
提出日時 2016-10-25 22:32:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 300 ms / 5,000 ms
コード長 401 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 76,200 KB
実行使用メモリ 45,780 KB
最終ジャッジ日時 2024-05-03 06:03:51
合計ジャッジ時間 4,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,032 KB
testcase_01 AC 117 ms
41,688 KB
testcase_02 AC 107 ms
41,288 KB
testcase_03 AC 110 ms
41,416 KB
testcase_04 AC 117 ms
41,236 KB
testcase_05 AC 120 ms
41,428 KB
testcase_06 AC 117 ms
41,392 KB
testcase_07 AC 122 ms
41,136 KB
testcase_08 AC 122 ms
41,272 KB
testcase_09 AC 135 ms
44,712 KB
testcase_10 AC 223 ms
45,780 KB
testcase_11 AC 295 ms
44,808 KB
testcase_12 AC 300 ms
45,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int n = sc.nextInt();
        int cnt = n/2;
        int d = n%2;
        String s = d == 1 ? "7" : "1";
        for (int i = 1;i < cnt;i++) {
            s += "1";
        }
        System.out.println(s);
    }
}
0