結果

問題 No.83 最大マッチング
ユーザー 37zigen37zigen
提出日時 2016-03-12 18:11:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 342 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 3,506 ms
コンパイル使用メモリ 76,460 KB
実行使用メモリ 57,152 KB
最終ジャッジ日時 2024-09-25 03:21:07
合計ジャッジ時間 6,635 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,124 KB
testcase_01 AC 147 ms
54,084 KB
testcase_02 AC 145 ms
54,264 KB
testcase_03 AC 147 ms
54,316 KB
testcase_04 AC 136 ms
53,212 KB
testcase_05 AC 147 ms
54,036 KB
testcase_06 AC 147 ms
54,384 KB
testcase_07 AC 148 ms
54,128 KB
testcase_08 AC 147 ms
54,256 KB
testcase_09 AC 170 ms
57,008 KB
testcase_10 AC 263 ms
57,020 KB
testcase_11 AC 342 ms
57,152 KB
testcase_12 AC 342 ms
57,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package 練習;
import java.util.Date;
import java.util.Scanner;

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

0