結果

問題 No.83 最大マッチング
ユーザー reon777reon777
提出日時 2017-06-21 22:53:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 421 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 3,644 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 50,308 KB
最終ジャッジ日時 2024-10-02 11:53:33
合計ジャッジ時間 6,532 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,148 KB
testcase_01 AC 131 ms
41,384 KB
testcase_02 AC 131 ms
41,292 KB
testcase_03 AC 133 ms
41,384 KB
testcase_04 AC 134 ms
41,184 KB
testcase_05 AC 133 ms
41,012 KB
testcase_06 AC 132 ms
41,088 KB
testcase_07 AC 131 ms
41,328 KB
testcase_08 AC 132 ms
41,004 KB
testcase_09 AC 233 ms
44,800 KB
testcase_10 AC 371 ms
50,044 KB
testcase_11 AC 421 ms
49,884 KB
testcase_12 AC 412 ms
50,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class HelloWorld
{
  public static void main( String[] args )
  {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    int keta = 0;
    int i = N;

    if(N%2 == 0){
      while(i>0){
        System.out.print("1");
        i = i-2;
      }
    }else{
      System.out.print("7");
      i = i-3;
      while(i>0){
        System.out.print("1");
        i = i-2;
      }
    }
  }
}
0