結果

問題 No.83 最大マッチング
ユーザー yagi2yagi2
提出日時 2017-04-25 14:19:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 432 ms / 5,000 ms
コード長 563 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 64,492 KB
最終ジャッジ日時 2024-09-13 08:43:08
合計ジャッジ時間 5,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,912 KB
testcase_01 AC 129 ms
53,920 KB
testcase_02 AC 132 ms
54,116 KB
testcase_03 AC 132 ms
53,964 KB
testcase_04 AC 130 ms
53,944 KB
testcase_05 AC 130 ms
53,976 KB
testcase_06 AC 128 ms
54,136 KB
testcase_07 AC 130 ms
53,944 KB
testcase_08 AC 130 ms
54,044 KB
testcase_09 AC 232 ms
56,444 KB
testcase_10 AC 378 ms
64,060 KB
testcase_11 AC 432 ms
64,184 KB
testcase_12 AC 431 ms
64,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = Integer.parseInt(sc.next());

        List<Integer> ans = new ArrayList<>();
        while (N > 0) {
            if (N % 2 == 1) {
                ans.add(7);
                N -= 3;
            } else {
                ans.add(1);
                N -= 2;
            }
        }

        ans.forEach(System.out::print);
        System.out.println();
    }
}
0