結果

問題 No.83 最大マッチング
ユーザー yoneoka1985yoneoka1985
提出日時 2018-10-10 19:58:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 603 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-10-12 17:19:27
合計ジャッジ時間 4,508 ms
ジャッジサーバーID
(参考情報)
judge / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,428 KB
testcase_01 AC 114 ms
41,268 KB
testcase_02 AC 98 ms
41,396 KB
testcase_03 AC 108 ms
41,440 KB
testcase_04 AC 111 ms
41,236 KB
testcase_05 AC 99 ms
41,076 KB
testcase_06 AC 106 ms
41,356 KB
testcase_07 AC 101 ms
39,712 KB
testcase_08 AC 108 ms
41,128 KB
testcase_09 AC 118 ms
41,340 KB
testcase_10 AC 118 ms
41,332 KB
testcase_11 AC 115 ms
41,188 KB
testcase_12 AC 109 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.lang.StringBuilder;

public class Main {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        // int 1つ分を読み込む
        int n = sc.nextInt();

        String top = ( n % 2 == 0 ) ? "1" : "7";
        StringBuilder sb = new StringBuilder(top);
        for(int i = 0; i < n/2 - 1 ; i++){
            sb.append("1");
        }

        // 標準出力に書き出す。
        System.out.println(sb.toString());
    }
}
0