提出 #751608


ソースコード 拡げる

#include <bits/stdc++.h>
using namespace std;

int main()
{
	cin.tie(0);
	ios::sync_with_stdio(false);

	int N;
	cin >> N;
	
	for(int i = 0;i < N;i++){
		if(i == 0){
			cout << 1;
		}
		else{
			cout << 0;
		}
	}
	
	cout << 7 << endl;

	return 0;
}

提出情報

提出日時
問題 A - 数え上げ
ユーザ cmmnd17
言語 C++14 (GCC 5.4.1)
得点 100
コード長 271 Byte
結果 AC
実行時間 4 ms
メモリ 256 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 100 / 100
結果
AC × 3
AC × 7
セット名 テストケース
Sample 0_000.txt, 0_001.txt, 0_002.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt
ケース名 結果 実行時間 メモリ
0_000.txt AC 4 ms 256 KiB
0_001.txt AC 4 ms 256 KiB
0_002.txt AC 4 ms 256 KiB
1_003.txt AC 4 ms 256 KiB
1_004.txt AC 4 ms 256 KiB
1_005.txt AC 4 ms 256 KiB
1_006.txt AC 4 ms 256 KiB