結果

問題 No.83 最大マッチング
ユーザー キョウチクキョウチク
提出日時 2021-09-15 05:02:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 357 ms / 5,000 ms
コード長 492 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 73,636 KB
実行使用メモリ 48,916 KB
最終ジャッジ日時 2024-06-28 01:52:29
合計ジャッジ時間 4,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,604 KB
testcase_01 AC 51 ms
36,972 KB
testcase_02 AC 50 ms
36,932 KB
testcase_03 AC 50 ms
36,816 KB
testcase_04 AC 50 ms
36,676 KB
testcase_05 AC 52 ms
36,544 KB
testcase_06 AC 50 ms
36,672 KB
testcase_07 AC 51 ms
36,788 KB
testcase_08 AC 54 ms
36,920 KB
testcase_09 AC 129 ms
38,208 KB
testcase_10 AC 300 ms
48,856 KB
testcase_11 AC 357 ms
48,916 KB
testcase_12 AC 354 ms
48,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Test{
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int mattiN;
        mattiN=Integer.parseInt(br.readLine());
        for(;mattiN>0;mattiN-=2){
            if(mattiN%2!=0){
                System.out.print("7");
                mattiN-=1;
            }else{
                System.out.print("1");
            }
        }
        System.out.println();
    }
}
0