結果

問題 No.112 ややこしい鶴亀算
ユーザー sugim48sugim48
提出日時 2014-12-17 09:59:57
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 434 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 66,024 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 00:59:57
合計ジャッジ時間 1,580 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
using namespace std;

int main() {
	int N; cin >> N;
	map<int, int> m;
	for (int i = 0; i < N; i++) {
		int a; cin >> a;
		m[a]++;
	}
	if (m.size() == 1) {
		int leg = m.begin()->first;
		if (leg / (N - 1) == 2)
			cout << N << ' ' << 0 << endl;
		else
			cout << 0 << ' ' << N << endl;
	}
	else {
		int kame = m.begin()->second;
		cout << N - kame << ' ' << kame << endl;
	}
}
0