結果

問題 No.138 化石のバージョン
ユーザー N/AN/A
提出日時 2018-08-24 21:25:55
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 06:38:54
合計ジャッジ時間 1,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 17 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>

int main(void) {
	int fsl[3], crt[3];

	scanf("%d.%d.%d", &fsl[0], &fsl[1], &fsl[2]);
	scanf("%d.%d.%d", &crt[0], &crt[1], &crt[2]);

	if (crt[0] < fsl[0])
		puts("YES");
	else if (crt[1] < fsl[1])
		puts("YES");
	else if (crt[2] < fsl[2])
		puts("YES");
	else
		puts("NO");

	return 0;
}
0