結果

問題 No.83 最大マッチング
ユーザー htensaihtensai
提出日時 2019-12-06 08:55:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 283 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 41,760 KB
最終ジャッジ日時 2024-12-23 04:59:13
合計ジャッジ時間 5,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,388 KB
testcase_01 AC 144 ms
41,760 KB
testcase_02 AC 147 ms
41,300 KB
testcase_03 AC 145 ms
41,160 KB
testcase_04 AC 143 ms
41,500 KB
testcase_05 AC 148 ms
41,420 KB
testcase_06 AC 141 ms
41,488 KB
testcase_07 AC 140 ms
41,032 KB
testcase_08 AC 143 ms
41,416 KB
testcase_09 AC 146 ms
41,548 KB
testcase_10 AC 146 ms
41,288 KB
testcase_11 AC 149 ms
41,408 KB
testcase_12 AC 147 ms
41,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		char[] arr = new char[n / 2];
		Arrays.fill(arr, '1');
		if (n % 2 == 1) {
		    arr[0] = '7';
		}
		System.out.println(arr);
   }
}

0