結果

問題 No.83 最大マッチング
ユーザー ffmm00ffmm00
提出日時 2015-06-21 06:53:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 420 ms / 5,000 ms
コード長 310 bytes
コンパイル時間 3,428 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 50,236 KB
最終ジャッジ日時 2024-07-07 15:25:24
合計ジャッジ時間 6,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,144 KB
testcase_01 AC 131 ms
41,548 KB
testcase_02 AC 133 ms
41,252 KB
testcase_03 AC 134 ms
41,100 KB
testcase_04 AC 133 ms
40,892 KB
testcase_05 AC 134 ms
40,996 KB
testcase_06 AC 134 ms
41,140 KB
testcase_07 AC 135 ms
41,288 KB
testcase_08 AC 131 ms
40,804 KB
testcase_09 AC 234 ms
44,868 KB
testcase_10 AC 369 ms
49,668 KB
testcase_11 AC 420 ms
50,008 KB
testcase_12 AC 420 ms
50,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N083 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		int n = sca.nextInt();

		if (n % 2 == 1) {
			System.out.print("7");
			n -= 2;
		}

		while (n > 1) {
			System.out.print("1");
			n -= 2;
		}

		System.out.println();

	}

}
0