結果

問題 No.333 門松列を数え上げ
ユーザー a2011404a2011404
提出日時 2017-03-08 08:58:21
言語 C90
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 242 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 20,736 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-23 20:52:40
合計ジャッジ時間 11,995 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 TLE -
testcase_02 AC 0 ms
6,940 KB
testcase_03 AC 949 ms
6,944 KB
testcase_04 AC 1,310 ms
6,940 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 70 ms
6,940 KB
testcase_08 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:10:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 | scanf("%d%d",&A,&B);
      | ^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>



int main(void) {

int A,B,i,c=0,sum=0;


scanf("%d%d",&A,&B);

if(A<B){
	for(i=(B-1);i>0;i--){
		if(i!=A)	sum++;
	}
}else if(A>B){
	for(i=(B+1);i<=2000000000;i++){
		if(i!=A)	sum++;
	}
}
	printf("%d",sum);
	return 0;

}
0