結果

問題 No.83 最大マッチング
ユーザー kano_townkano_town
提出日時 2014-12-05 21:04:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 371 ms / 5,000 ms
コード長 341 bytes
コンパイル時間 3,211 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 63,828 KB
最終ジャッジ日時 2024-06-11 15:47:43
合計ジャッジ時間 5,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,820 KB
testcase_01 AC 114 ms
53,896 KB
testcase_02 AC 101 ms
52,828 KB
testcase_03 AC 118 ms
54,368 KB
testcase_04 AC 102 ms
52,976 KB
testcase_05 AC 103 ms
52,696 KB
testcase_06 AC 113 ms
53,424 KB
testcase_07 AC 118 ms
54,088 KB
testcase_08 AC 102 ms
52,892 KB
testcase_09 AC 209 ms
56,500 KB
testcase_10 AC 308 ms
63,168 KB
testcase_11 AC 371 ms
63,828 KB
testcase_12 AC 353 ms
63,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder83 {

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