結果

問題 No.83 最大マッチング
ユーザー tk55513tk55513
提出日時 2023-02-17 21:19:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 423 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-07-19 12:20:00
合計ジャッジ時間 4,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,312 KB
testcase_01 AC 123 ms
40,288 KB
testcase_02 AC 126 ms
41,484 KB
testcase_03 AC 125 ms
41,440 KB
testcase_04 AC 135 ms
41,308 KB
testcase_05 AC 124 ms
41,440 KB
testcase_06 AC 127 ms
41,512 KB
testcase_07 AC 126 ms
41,580 KB
testcase_08 AC 126 ms
41,412 KB
testcase_09 AC 145 ms
41,432 KB
testcase_10 AC 143 ms
41,600 KB
testcase_11 AC 140 ms
41,440 KB
testcase_12 AC 154 ms
41,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String... args){
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        StringBuilder sb=new StringBuilder();
        for (int i = 0; i < n / 2; i++) {
            sb.append(1);
        }
        if(n%2==1){
            sb.insert(0,7);
            sb.deleteCharAt(sb.length()-1);
        }
        System.out.println(sb);
    }
}
0