結果

問題 No.83 最大マッチング
ユーザー ieneko18ieneko18
提出日時 2016-11-15 22:33:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 305 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 75,948 KB
実行使用メモリ 45,748 KB
最終ジャッジ日時 2024-11-26 01:55:27
合計ジャッジ時間 4,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,948 KB
testcase_01 AC 115 ms
41,312 KB
testcase_02 AC 115 ms
41,260 KB
testcase_03 AC 119 ms
41,192 KB
testcase_04 AC 107 ms
40,164 KB
testcase_05 AC 110 ms
40,688 KB
testcase_06 AC 117 ms
41,468 KB
testcase_07 AC 116 ms
41,188 KB
testcase_08 AC 118 ms
41,416 KB
testcase_09 AC 129 ms
44,812 KB
testcase_10 AC 224 ms
45,420 KB
testcase_11 AC 290 ms
44,700 KB
testcase_12 AC 305 ms
45,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

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