結果
問題 | No.24 数当てゲーム |
ユーザー |
![]() |
提出日時 | 2017-08-07 10:00:50 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 745 bytes |
コンパイル時間 | 660 ms |
コンパイル使用メモリ | 60,844 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 23:35:05 |
合計ジャッジ時間 | 1,472 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <iostream>#include <vector>#include <string>#include <algorithm>#include <iterator>using namespace std;int main() {int N;cin >> N;int r[] = {1,1,1,1,1,1,1,1,1,1};//数値をいじるfor (int i = 0; i < N; i++) {int a,b,c,d;string s;cin >> a >> b >> c >>d >> s;if (s == "YES") {r[a] = r[a] + 1;r[b] = r[b] + 1;r[c] = r[c] + 1;r[d] = r[d] + 1;} else {r[a] = r[a] - 1;r[b] = r[b] - 1;r[c] = r[c] - 1;r[d] = r[d] - 1;}}int max = r[0];for (int i = 0; i < 10; i++) {if (max < r[i]) {max = r[i];}}for (int i = 0; i < 10; i++) {if(r[i] == max) {cout << i << "\n";}}return 0;}