結果

問題 No.83 最大マッチング
ユーザー kenji_shioyakenji_shioya
提出日時 2016-07-01 01:04:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 317 ms / 5,000 ms
コード長 395 bytes
コンパイル時間 3,574 ms
コンパイル使用メモリ 76,092 KB
実行使用メモリ 57,024 KB
最終ジャッジ日時 2024-10-12 00:00:35
合計ジャッジ時間 6,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,032 KB
testcase_01 AC 136 ms
53,980 KB
testcase_02 AC 134 ms
53,696 KB
testcase_03 AC 133 ms
54,068 KB
testcase_04 AC 138 ms
54,268 KB
testcase_05 AC 129 ms
54,060 KB
testcase_06 AC 125 ms
53,812 KB
testcase_07 AC 136 ms
54,172 KB
testcase_08 AC 128 ms
53,772 KB
testcase_09 AC 159 ms
56,728 KB
testcase_10 AC 243 ms
57,024 KB
testcase_11 AC 314 ms
56,404 KB
testcase_12 AC 317 ms
56,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise139{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    String s = "";
    if(n % 2 == 0){
      for(int i = 0; i < n / 2; i++){
        s += "1";
      }
    }else{
      s += "7";
      for(int i = 0; i < n / 2 - 1; i++){
        s += "1";
      }
    }
    System.out.println(s);
  }
}
0