結果

問題 No.83 最大マッチング
ユーザー fal_rndfal_rnd
提出日時 2017-09-29 23:55:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 79,168 KB
実行使用メモリ 64,244 KB
最終ジャッジ日時 2024-11-15 20:02:07
合計ジャッジ時間 5,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,660 KB
testcase_01 AC 124 ms
53,800 KB
testcase_02 AC 120 ms
53,688 KB
testcase_03 WA -
testcase_04 AC 123 ms
53,960 KB
testcase_05 WA -
testcase_06 AC 122 ms
53,812 KB
testcase_07 WA -
testcase_08 AC 121 ms
53,984 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 407 ms
64,244 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();
		while(n>=2) {
			System.out.print(n==3?7:1);
			n-=2;
		}
		System.out.println();
	}
}
0