結果

問題 No.83 最大マッチング
ユーザー abcabc
提出日時 2016-11-02 13:02:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 1,873 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-05-03 21:01:25
合計ジャッジ時間 4,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,008 KB
testcase_01 AC 95 ms
39,740 KB
testcase_02 AC 117 ms
41,056 KB
testcase_03 AC 114 ms
40,708 KB
testcase_04 AC 103 ms
40,064 KB
testcase_05 AC 107 ms
40,624 KB
testcase_06 AC 102 ms
39,988 KB
testcase_07 AC 115 ms
41,224 KB
testcase_08 AC 105 ms
39,988 KB
testcase_09 AC 131 ms
40,744 KB
testcase_10 AC 130 ms
40,896 KB
testcase_11 AC 128 ms
41,384 KB
testcase_12 AC 125 ms
41,424 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