結果

問題 No.83 最大マッチング
ユーザー abcabc
提出日時 2016-11-02 13:02:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-11-25 01:26:28
合計ジャッジ時間 4,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,148 KB
testcase_01 AC 119 ms
53,904 KB
testcase_02 AC 107 ms
52,548 KB
testcase_03 AC 118 ms
53,856 KB
testcase_04 AC 100 ms
52,352 KB
testcase_05 AC 107 ms
52,776 KB
testcase_06 AC 118 ms
53,892 KB
testcase_07 AC 119 ms
54,044 KB
testcase_08 AC 118 ms
54,084 KB
testcase_09 AC 117 ms
53,004 KB
testcase_10 AC 126 ms
53,700 KB
testcase_11 AC 122 ms
52,928 KB
testcase_12 AC 124 ms
53,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numMatchsticks = sc.nextInt();

        StringBuilder sb = new StringBuilder();

        while (0 < numMatchsticks ) {

            if (numMatchsticks % 2 == 1) {

                sb.append('7');
                numMatchsticks -= 3;

            } else {

                sb.append('1');
                numMatchsticks -= 2;

            }

        }

        System.out.println(sb.toString());

    }

}
0