結果

問題 No.83 最大マッチング
ユーザー AOSM_saltoneAOSM_saltone
提出日時 2017-05-21 11:36:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 398 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 1,841 ms
コンパイル使用メモリ 74,036 KB
実行使用メモリ 52,660 KB
最終ジャッジ日時 2024-09-19 08:05:50
合計ジャッジ時間 4,927 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,340 KB
testcase_01 AC 118 ms
41,404 KB
testcase_02 AC 117 ms
41,384 KB
testcase_03 AC 105 ms
41,180 KB
testcase_04 AC 119 ms
41,376 KB
testcase_05 AC 108 ms
41,176 KB
testcase_06 AC 123 ms
41,808 KB
testcase_07 AC 125 ms
41,396 KB
testcase_08 AC 120 ms
41,712 KB
testcase_09 AC 203 ms
45,308 KB
testcase_10 AC 344 ms
52,108 KB
testcase_11 AC 398 ms
52,660 KB
testcase_12 AC 396 ms
52,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        if(a % 2 == 1){
            System.out.print(7);
            for(int n=1;n<a/2;n++){
                System.out.print(1);
            }
        }else{
            for(int n=1;n<=a/2;n++){
                System.out.print(1);
            }
        }
    }
}
0