結果

問題 No.83 最大マッチング
ユーザー キョウチクキョウチク
提出日時 2020-07-17 14:08:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 257 ms / 5,000 ms
コード長 429 bytes
コンパイル時間 2,950 ms
コンパイル使用メモリ 79,104 KB
実行使用メモリ 42,812 KB
最終ジャッジ日時 2024-05-06 05:24:30
合計ジャッジ時間 4,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,216 KB
testcase_01 AC 44 ms
36,888 KB
testcase_02 AC 51 ms
37,264 KB
testcase_03 AC 51 ms
37,236 KB
testcase_04 AC 52 ms
37,180 KB
testcase_05 AC 50 ms
36,780 KB
testcase_06 AC 53 ms
37,192 KB
testcase_07 AC 50 ms
37,000 KB
testcase_08 AC 50 ms
37,272 KB
testcase_09 AC 71 ms
42,384 KB
testcase_10 AC 172 ms
42,812 KB
testcase_11 AC 257 ms
42,812 KB
testcase_12 AC 254 ms
42,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package workspace.gomi;
import java.io.*;
public class temp{
    public static void main(String[] args) throws IOException{
        BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
        int n=Integer.parseInt(br.readLine());
        String s="";
        if(n%2==1){
            n-=3;
            s="7";
        }
        n/=2;
        for(int i=0;i<n;i++) s=s+"1";
        System.out.println(s);
    }
}
0