結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
39,876 KB
testcase_01 AC 121 ms
41,116 KB
testcase_02 AC 127 ms
41,324 KB
testcase_03 AC 126 ms
41,372 KB
testcase_04 AC 134 ms
41,168 KB
testcase_05 AC 132 ms
41,356 KB
testcase_06 AC 116 ms
40,476 KB
testcase_07 AC 115 ms
41,204 KB
testcase_08 AC 111 ms
41,372 KB
testcase_09 AC 191 ms
44,904 KB
testcase_10 AC 374 ms
50,232 KB
testcase_11 AC 377 ms
50,424 KB
testcase_12 AC 384 ms
49,848 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