結果

問題 No.83 最大マッチング
ユーザー ieneko18ieneko18
提出日時 2016-11-15 22:26:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 352 ms / 5,000 ms
コード長 301 bytes
コンパイル時間 1,698 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 50,172 KB
最終ジャッジ日時 2024-05-04 14:01:18
合計ジャッジ時間 4,456 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,192 KB
testcase_01 AC 103 ms
41,268 KB
testcase_02 AC 107 ms
41,420 KB
testcase_03 AC 105 ms
41,132 KB
testcase_04 AC 97 ms
41,380 KB
testcase_05 AC 105 ms
40,692 KB
testcase_06 AC 93 ms
41,140 KB
testcase_07 AC 106 ms
41,252 KB
testcase_08 AC 107 ms
41,104 KB
testcase_09 AC 162 ms
44,828 KB
testcase_10 AC 310 ms
46,760 KB
testcase_11 AC 346 ms
49,980 KB
testcase_12 AC 352 ms
50,172 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();
		if(n%2==0)System.out.print("1");
		else System.out.print("7");
		for(int i=0;i<n/2-1;i++){
			System.out.print("1");
		}
		System.out.println();
	}
}
0