結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,248 KB
testcase_01 AC 118 ms
41,384 KB
testcase_02 AC 121 ms
41,256 KB
testcase_03 AC 106 ms
41,392 KB
testcase_04 AC 118 ms
41,536 KB
testcase_05 AC 109 ms
41,676 KB
testcase_06 AC 119 ms
41,260 KB
testcase_07 AC 123 ms
41,372 KB
testcase_08 AC 110 ms
40,432 KB
testcase_09 AC 127 ms
45,292 KB
testcase_10 AC 221 ms
45,576 KB
testcase_11 AC 289 ms
45,804 KB
testcase_12 AC 307 ms
45,516 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