結果

問題 No.83 最大マッチング
ユーザー itezpaceitezpace
提出日時 2016-08-22 16:31:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 334 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 2,607 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 45,660 KB
最終ジャッジ日時 2024-11-07 22:35:23
合計ジャッジ時間 5,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,144 KB
testcase_01 AC 131 ms
41,184 KB
testcase_02 AC 116 ms
40,260 KB
testcase_03 AC 118 ms
39,884 KB
testcase_04 AC 125 ms
40,480 KB
testcase_05 AC 124 ms
40,428 KB
testcase_06 AC 117 ms
40,116 KB
testcase_07 AC 129 ms
41,340 KB
testcase_08 AC 131 ms
41,304 KB
testcase_09 AC 161 ms
45,428 KB
testcase_10 AC 230 ms
44,980 KB
testcase_11 AC 329 ms
45,660 KB
testcase_12 AC 334 ms
45,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Yuki83 {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    String s = "";
    int a = n/2;
    int b = n%2;
    int c = 0;
    if(b==1){
      a-=1;
      c=1;
    }
    if(c==1){
      s+='7';
    }
    for(int i=0; i<a; ++i){
      s+='1';
    }
    System.out.println(s);
  }
}
0