結果

問題 No.1395 Less Sweet Alchemy
ユーザー tsuishitsuishi
提出日時 2021-02-15 10:21:58
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 1,767 bytes
コンパイル時間 800 ms
コンパイル使用メモリ 29,516 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-30 04:14:38
合計ジャッジ時間 1,675 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Yukicoder №11 カードマッチ
// https://yukicoder.me/problems/no/11
// ***********************
// for debug
#define DEBUG

#define NOP do{}while(0)
#ifdef DEBUG
#define TRACE(...) do{printf(__VA_ARGS__);fflush(stdout);}while(0)
#define TRACECR do{printf("\n");fflush(stdout);}while(0)
#else
#define TRACE(...) NOP
#define TRACECR NOP
#endif

#define PRINCR do{printf("\n");fflush(stdout);}while(0)
#define NOCR(strig) do{char *p;p=strchr(strig,'\n');if(p)*p='\0';}while(0)
// The out-of-date function
#define	asctime(...)	asctime_s(...)
#define	ctime(...)		ctime_s(...)
#define	strlen(a)	mystr_len(a)

// for stdio
#define	INPUT	GETLINE
#define GETLINE(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0)
#define REP(a,b) for(int a=0;a<(int)(b);++a)
#define lolong long long
#define INPBUF (255+2)
static char *GETWORD(char* str) {char c;char *cp;cp=&str[0];c=fgetc(stdin);while( c != EOF ){if((c==' ')||( c=='\n')) break;*cp++=c;c=fgetc(stdin);}*cp='\0';return &str[0];}
#define	GETINTS(a,b) {char s[34];int *ap=a;REP(i,b){GETWORD(s);sscanf(s,"%d", ap);ap++;}}
static int GETLINEINT(void) {char s[34];GETLINE(s);return atoi(s);}
static int GETWORDINT(void) {char s[34];GETWORD(s);return atoi(s);}
#define Yes(a)    printf("%s",((a)?"Yes":"No"))
// ***********************
// ***********************
// 外部変数
// ***********************
int main() {
	int		query,aim;
	int		imax,imin;

	imax = 0;
	imin = 99999;
	query = GETWORDINT();
	aim = GETWORDINT();
	REP(i,query) {
		int val = GETWORDINT();
		if( val < imin ) imin = val;
		if( val > imax ) imax = val;
	}
	if(( imin <= aim )&&( aim <= imax ) ) {
		Yes(1);
	} else {
		Yes(0);
	}
	PRINCR;
	return 0;
}
0