結果

問題 No.83 最大マッチング
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-10 11:29:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 439 ms / 5,000 ms
コード長 618 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 75,024 KB
実行使用メモリ 64,328 KB
最終ジャッジ日時 2024-07-04 13:31:29
合計ジャッジ時間 5,217 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
52,948 KB
testcase_01 AC 118 ms
53,896 KB
testcase_02 AC 129 ms
54,036 KB
testcase_03 AC 123 ms
54,188 KB
testcase_04 AC 119 ms
53,980 KB
testcase_05 AC 122 ms
54,084 KB
testcase_06 AC 123 ms
54,096 KB
testcase_07 AC 123 ms
54,032 KB
testcase_08 AC 124 ms
54,120 KB
testcase_09 AC 178 ms
55,588 KB
testcase_10 AC 355 ms
63,960 KB
testcase_11 AC 439 ms
64,328 KB
testcase_12 AC 397 ms
64,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        if(n%2==0){
            int lg = n/2;
            for(int i=0; i<lg-1; i++){
                System.out.print(1);
            }
            System.out.println(1);
        }else{
            int lk =(n-3)/2;
            System.out.print(7);
            if(n-3>0){
               for(int i=0; i<lk-1; i++){
                System.out.print(1);
               }
               System.out.println(1);
            }
        }
    }
}
0