結果

問題 No.83 最大マッチング
ユーザー SagTokiSagToki
提出日時 2018-05-18 09:28:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 416 ms / 5,000 ms
コード長 1,238 bytes
コンパイル時間 4,639 ms
コンパイル使用メモリ 75,088 KB
実行使用メモリ 63,620 KB
最終ジャッジ日時 2024-06-28 13:42:22
合計ジャッジ時間 6,958 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,952 KB
testcase_01 AC 129 ms
54,084 KB
testcase_02 AC 118 ms
52,656 KB
testcase_03 AC 133 ms
54,100 KB
testcase_04 AC 132 ms
54,316 KB
testcase_05 AC 131 ms
54,216 KB
testcase_06 AC 134 ms
54,252 KB
testcase_07 AC 136 ms
54,356 KB
testcase_08 AC 136 ms
54,072 KB
testcase_09 AC 232 ms
57,268 KB
testcase_10 AC 358 ms
63,416 KB
testcase_11 AC 416 ms
63,616 KB
testcase_12 AC 406 ms
63,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.InputMismatchException;

public class MaximumMatching {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        try{
            //数値を入力して範囲をチェックする
            int N = scanner.nextInt();
            if(N < 2 || N > Math.pow(10,5)){
                System.out.println("Nは2以上10の5乗以下で入力してください");
                System.exit(0);
            }
            
            //入力された値が偶数か奇数かのチェック
            if( N % 2 == 0){
                for(int i = 0 ; i < N / 2 ; i++){
                    System.out.print("1");    
                    }
            }else{
                for(int j = 0 ; j < (N - 1) / 2 ; j++){
                    if( j == 0){
                        System.out.print("7");
                    }else{
                        System.out.print("1");
                    }
                }
            }
            
        }catch(InputMismatchException e){
            System.out.println("数字を入力してください");
        }catch(Exception E){
            System.out.println("予期せぬエラーです");
        }
    }
}
0