結果

問題 No.83 最大マッチング
ユーザー nCk_cvnCk_cv
提出日時 2016-01-27 17:57:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 306 ms / 5,000 ms
コード長 337 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 76,648 KB
実行使用メモリ 45,616 KB
最終ジャッジ日時 2024-09-21 17:40:34
合計ジャッジ時間 4,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,580 KB
testcase_01 AC 119 ms
41,176 KB
testcase_02 AC 125 ms
40,948 KB
testcase_03 AC 107 ms
40,212 KB
testcase_04 AC 119 ms
40,036 KB
testcase_05 AC 128 ms
41,424 KB
testcase_06 AC 122 ms
41,132 KB
testcase_07 AC 121 ms
41,448 KB
testcase_08 AC 106 ms
41,512 KB
testcase_09 AC 146 ms
45,568 KB
testcase_10 AC 230 ms
45,616 KB
testcase_11 AC 306 ms
45,604 KB
testcase_12 AC 303 ms
45,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		String out = "";
		if(N % 2 == 1) {
			out ="7";
			N -= 3;
		}
		for(int i = 0; i < N; i += 2) {
			out += "1";
		}
		System.out.println(out);
		
	}
}
0