結果

問題 No.83 最大マッチング
ユーザー RyoichiRyoichi
提出日時 2024-05-14 22:18:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 362 ms / 5,000 ms
コード長 507 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 76,232 KB
実行使用メモリ 57,176 KB
最終ジャッジ日時 2024-05-14 22:18:25
合計ジャッジ時間 6,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,960 KB
testcase_01 AC 134 ms
54,136 KB
testcase_02 AC 137 ms
54,232 KB
testcase_03 AC 137 ms
54,572 KB
testcase_04 AC 156 ms
53,956 KB
testcase_05 AC 133 ms
54,248 KB
testcase_06 AC 131 ms
54,168 KB
testcase_07 AC 132 ms
54,268 KB
testcase_08 AC 134 ms
53,956 KB
testcase_09 AC 164 ms
56,620 KB
testcase_10 AC 244 ms
56,900 KB
testcase_11 AC 362 ms
56,896 KB
testcase_12 AC 332 ms
57,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt(); //マッチ棒の本数

        /*偶数なら1を並べるだけ,奇数なら最大の位に7 */
        String str="";
        if(N%2!=0){
            str="7";
            N -= 2;
        }
        int num = N/2; //1の個数
        for(int i=0; i<num; i++){
            str +="1";
        }
        System.out.println(str);
        
    }
}
0