結果

問題 No.83 最大マッチング
ユーザー rainyrainy
提出日時 2021-07-26 15:13:26
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 28,416 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-29 11:16:30
合計ジャッジ時間 845 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 0 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 0 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

int main(void) {
	long int one = 1;
	long int num = 0;
	int N;
	scanf("%d", &N);
	while (N > 3) {
		num += one;
		one *= 10;
		N -= 2;
	}
	if (N == 2) {
		num += one;
	}else {
		num += (one * 7);
	}
	printf("%ld", num);
}
0