結果

問題 No.412 花火大会
ユーザー FF256grhyFF256grhy
提出日時 2016-08-13 00:04:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 22,912 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 16:35:28
合計ジャッジ時間 899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 0 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 0 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 0 ms
5,248 KB
testcase_10 AC 0 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 0 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 0 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 0 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |         scanf("%d%d%d%d", &b, &c, &d, &n);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:16:43: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |         for(int i = 0; i < n; i++) { scanf("%d", &e[i]); }
      |                                      ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int n, b, c, d, e[100];
int x, y, z;

void swap(int &x, int &y) {
	int temp = x;
	x = y;
	y = temp;
	
	return;
}

int main() {
	scanf("%d%d%d%d", &b, &c, &d, &n);
	for(int i = 0; i < n; i++) { scanf("%d", &e[i]); }
	
	if(c > d) { swap(c, d); }
	if(b > c) { swap(b, c); }
	if(c > d) { swap(c, d); }
	for(int i = 0; i < n; i++) {
		     if(d <= e[i]) { z++; }
		else if(c <= e[i]) { y++; }
		else if(b <= e[i]) { x++; }
	}
	
	int ans = (1 << n) - (1 << (n - z)) - (1 << (n - z - y)) * z - (1 << (n - z - y - x)) * (z * (z - 1) / 2 + z * y);
	printf("%d\n", ans);
	
	return 0;
}
0