結果

問題 No.83 最大マッチング
ユーザー fal_rndfal_rnd
提出日時 2017-09-29 23:56:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 401 ms / 5,000 ms
コード長 621 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 79,044 KB
実行使用メモリ 64,220 KB
最終ジャッジ日時 2024-11-15 20:02:14
合計ジャッジ時間 5,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,872 KB
testcase_01 AC 123 ms
53,624 KB
testcase_02 AC 124 ms
54,364 KB
testcase_03 AC 125 ms
53,840 KB
testcase_04 AC 122 ms
53,588 KB
testcase_05 AC 124 ms
53,720 KB
testcase_06 AC 121 ms
54,132 KB
testcase_07 AC 123 ms
53,888 KB
testcase_08 AC 125 ms
53,728 KB
testcase_09 AC 221 ms
56,560 KB
testcase_10 AC 359 ms
63,512 KB
testcase_11 AC 401 ms
63,984 KB
testcase_12 AC 396 ms
64,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n){return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}
	static long getLong(){return Long.parseLong(s.next());}

	public static void main(String[]$){
		int n=getInt();
		if(n%2==1) {
			System.out.print(7);
			n-=3;
		}
		while(n>=2) {
			System.out.print(1);
			n-=2;
		}
		System.out.println();
	}
}
0