結果

問題 No.779 Heisei
ユーザー Fre_de_rica
提出日時 2019-02-20 22:53:04
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 955 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 28,672 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 21:39:11
合計ジャッジ時間 1,077 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define H_START 19890108        //平成の始まり
#define H_END 20190430          //平成の終わり

int main(void) {

	char year[5];
	char month[3];
	char day[3];

	char input_ymd[12];
	char output_ymd[12];

	int int_ymd;
	
	char *outprint = "Yes";
	char *space_tp = NULL;

	//標準入力
	scanf("%[^\n]", &input_ymd);

	//スペース区切りで年月日を取得
	//年取り出し
	space_tp = strtok(input_ymd, " ");
	sprintf(year, "%s", space_tp);

	//月取り出し
	space_tp = strtok(NULL, " ");
	sprintf(month, "%02s", space_tp);

	//日取り出し
	space_tp = strtok(NULL, " ");
	sprintf(day, "%02s", space_tp);

	//年月日作成
	sprintf(output_ymd, "%s%s%s", year, month, day);

	//int型に変換
	int_ymd = atoi(output_ymd);

	//判定
	if (int_ymd < H_START) {
		outprint = "No";
	}
	if (int_ymd >H_END) {
		outprint = "No";
	}

	printf("%s\n", outprint);

	return 0;

}
0