結果

問題 No.83 最大マッチング
ユーザー ieneko18ieneko18
提出日時 2016-11-15 22:33:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 297 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 2,866 ms
コンパイル使用メモリ 81,624 KB
実行使用メモリ 45,600 KB
最終ジャッジ日時 2024-05-04 14:02:18
合計ジャッジ時間 4,679 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,128 KB
testcase_01 AC 119 ms
41,276 KB
testcase_02 AC 108 ms
40,160 KB
testcase_03 AC 119 ms
41,372 KB
testcase_04 AC 118 ms
41,184 KB
testcase_05 AC 110 ms
41,824 KB
testcase_06 AC 112 ms
41,324 KB
testcase_07 AC 101 ms
41,304 KB
testcase_08 AC 111 ms
40,304 KB
testcase_09 AC 128 ms
45,408 KB
testcase_10 AC 212 ms
45,596 KB
testcase_11 AC 291 ms
45,376 KB
testcase_12 AC 297 ms
45,600 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