結果

問題 No.383 レーティング
ユーザー Taro_ColdTaro_Cold
提出日時 2017-10-05 00:14:00
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 696 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 21,632 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-28 06:07:21
合計ジャッジ時間 1,191 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:20:33: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |                                 scanf("%d", &x);
      |                                 ^~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

#define QUEUE_SIZE 100
int rear;
int front;
int queue[QUEUE_SIZE];

#define next(a) (((a) + 1) % QUEUE_SIZE)

void init(void);
void enqueue(int x);
int dequeue(void);

int main(void){
		init();
		int x = 0;
		int y = 0;
		for(int i = 0;i < 2;i++){
				scanf("%d", &x);
				enqueue(x);
		}
		y = -dequeue() + dequeue();

		if(y == 0){
				printf("0\n");
		}else if(y > 0){
				printf("+%d\n", y);
		}else if(y < 0){
				printf("%d\n", y);
		}

		return 0;
}

void init(void){
		rear = front = 0;
}

void enqueue(int x){
		queue[rear] = x;
		rear = next(rear);
}

int dequeue(void){
		int x = 0;
		x = queue[front];
		front = next(front);
	   	return x;
}	

0