結果

問題 No.83 最大マッチング
ユーザー GrenacheGrenache
提出日時 2015-09-23 01:09:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 631 bytes
コンパイル時間 3,341 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-07-19 08:45:46
合計ジャッジ時間 5,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,128 KB
testcase_01 AC 121 ms
41,120 KB
testcase_02 AC 120 ms
41,160 KB
testcase_03 AC 126 ms
41,712 KB
testcase_04 AC 123 ms
41,024 KB
testcase_05 AC 120 ms
41,004 KB
testcase_06 AC 127 ms
41,180 KB
testcase_07 AC 114 ms
41,488 KB
testcase_08 AC 121 ms
41,300 KB
testcase_09 AC 126 ms
41,208 KB
testcase_10 AC 124 ms
41,276 KB
testcase_11 AC 133 ms
41,616 KB
testcase_12 AC 137 ms
41,476 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();
        	sb.append('7');
        	for (int i = 0; i < n / 2; i++) {
        		sb.append('1');
        	}
        	System.out.println(sb);
        }

        sc.close();
    }
}
0