結果

問題 No.83 最大マッチング
ユーザー mos_13184925mos_13184925
提出日時 2018-06-30 14:56:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 410 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 64,392 KB
最終ジャッジ日時 2024-07-01 00:54:49
合計ジャッジ時間 5,477 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,996 KB
testcase_01 AC 132 ms
53,768 KB
testcase_02 AC 131 ms
53,912 KB
testcase_03 AC 115 ms
53,164 KB
testcase_04 AC 117 ms
52,548 KB
testcase_05 AC 115 ms
53,096 KB
testcase_06 AC 115 ms
52,984 KB
testcase_07 AC 129 ms
54,204 KB
testcase_08 AC 129 ms
54,052 KB
testcase_09 AC 229 ms
57,392 KB
testcase_10 AC 358 ms
63,492 KB
testcase_11 AC 397 ms
63,760 KB
testcase_12 AC 410 ms
64,392 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%2==0) System.out.print("1");
        else System.out.print("7");

        while(n>3) {
            System.out.print("1");
            n-=2;
        }
        System.out.println();
    }
}
0