結果

問題 No.83 最大マッチング
ユーザー キョウチクキョウチク
提出日時 2020-07-17 14:08:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 5,000 ms
コード長 429 bytes
コンパイル時間 3,547 ms
コンパイル使用メモリ 80,144 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-11-28 09:19:31
合計ジャッジ時間 5,872 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
50,368 KB
testcase_01 AC 57 ms
49,776 KB
testcase_02 AC 61 ms
50,384 KB
testcase_03 AC 61 ms
50,508 KB
testcase_04 AC 62 ms
50,544 KB
testcase_05 AC 62 ms
50,424 KB
testcase_06 AC 61 ms
50,164 KB
testcase_07 AC 62 ms
50,520 KB
testcase_08 AC 62 ms
50,272 KB
testcase_09 AC 83 ms
53,960 KB
testcase_10 AC 183 ms
54,392 KB
testcase_11 AC 270 ms
54,476 KB
testcase_12 AC 272 ms
54,400 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