結果

問題 No.83 最大マッチング
ユーザー tsunabittsunabit
提出日時 2018-08-19 14:14:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 417 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 4,484 ms
コンパイル使用メモリ 76,380 KB
実行使用メモリ 50,156 KB
最終ジャッジ日時 2024-11-17 05:02:44
合計ジャッジ時間 8,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,276 KB
testcase_01 AC 135 ms
41,292 KB
testcase_02 AC 130 ms
41,336 KB
testcase_03 AC 119 ms
39,900 KB
testcase_04 AC 137 ms
41,292 KB
testcase_05 AC 136 ms
41,460 KB
testcase_06 AC 135 ms
41,284 KB
testcase_07 AC 136 ms
41,356 KB
testcase_08 AC 137 ms
41,232 KB
testcase_09 AC 235 ms
44,800 KB
testcase_10 AC 375 ms
49,864 KB
testcase_11 AC 407 ms
50,156 KB
testcase_12 AC 417 ms
50,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

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