結果

問題 No.83 最大マッチング
ユーザー GrenacheGrenache
提出日時 2015-09-23 01:07:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 631 bytes
コンパイル時間 3,830 ms
コンパイル使用メモリ 75,184 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-07-19 08:45:29
合計ジャッジ時間 5,470 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,840 KB
testcase_01 AC 130 ms
53,996 KB
testcase_02 AC 111 ms
52,872 KB
testcase_03 WA -
testcase_04 AC 111 ms
52,804 KB
testcase_05 WA -
testcase_06 AC 110 ms
52,640 KB
testcase_07 WA -
testcase_08 AC 125 ms
53,820 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 139 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder83 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        if (n % 2 == 0) {
        	StringBuilder sb = new StringBuilder();
        	for (int i = 0; i < n / 2; i++) {
        		sb.append('1');
        	}
        	System.out.println(sb);
        } else {
        	n -= 3;
        	StringBuilder sb = new StringBuilder();
        	for (int i = 0; i < n / 2; i++) {
        		sb.append('1');
        	}
        	sb.append('7');
        	System.out.println(sb);
        }

        sc.close();
    }
}
0