結果

問題 No.83 最大マッチング
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-07 01:42:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 356 ms / 5,000 ms
コード長 310 bytes
コンパイル時間 2,352 ms
コンパイル使用メモリ 75,692 KB
実行使用メモリ 45,752 KB
最終ジャッジ日時 2024-09-21 20:56:25
合計ジャッジ時間 5,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,056 KB
testcase_01 AC 122 ms
40,012 KB
testcase_02 AC 138 ms
41,172 KB
testcase_03 AC 134 ms
41,288 KB
testcase_04 AC 138 ms
41,344 KB
testcase_05 AC 138 ms
41,280 KB
testcase_06 AC 138 ms
41,516 KB
testcase_07 AC 144 ms
41,468 KB
testcase_08 AC 137 ms
41,400 KB
testcase_09 AC 165 ms
45,408 KB
testcase_10 AC 253 ms
45,504 KB
testcase_11 AC 343 ms
45,664 KB
testcase_12 AC 356 ms
45,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);
		int n = in.nextInt();

		String ans = "";
		if(n % 2 == 1) {
			ans = "7";
			n -= 3;
		}
		for(int i=0; i<n; i+=2) {
			ans += "1";
		}

		System.out.println(ans);
	}
}
0