結果

問題 No.83 最大マッチング
ユーザー kusagame12kusagame12
提出日時 2023-11-17 19:24:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 2,791 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-09-26 05:32:05
合計ジャッジ時間 5,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,240 KB
testcase_01 AC 123 ms
41,300 KB
testcase_02 AC 127 ms
41,360 KB
testcase_03 AC 121 ms
41,040 KB
testcase_04 AC 122 ms
41,484 KB
testcase_05 AC 122 ms
41,032 KB
testcase_06 AC 112 ms
40,252 KB
testcase_07 AC 119 ms
41,300 KB
testcase_08 AC 118 ms
41,092 KB
testcase_09 AC 137 ms
41,144 KB
testcase_10 AC 131 ms
41,376 KB
testcase_11 AC 124 ms
40,428 KB
testcase_12 AC 149 ms
41,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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