結果

問題 No.83 最大マッチング
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 05:49:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 555 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 64,300 KB
最終ジャッジ日時 2024-05-04 01:58:59
合計ジャッジ時間 4,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,940 KB
testcase_01 AC 112 ms
53,152 KB
testcase_02 AC 114 ms
54,216 KB
testcase_03 WA -
testcase_04 AC 113 ms
53,932 KB
testcase_05 WA -
testcase_06 AC 96 ms
52,676 KB
testcase_07 WA -
testcase_08 AC 109 ms
54,136 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 362 ms
64,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        
        if(N==2){
            System.out.println(1);
        }else if(N==3){
            System.out.println(7);
        }else{
            while(N>=4){
                System.out.print(1);
                N=N-2;
            }
            if(N==2){
                System.out.println(1);
            }else if(N==3){
                System.out.println(7);
            }
        }
    }
}
0