結果
問題 | No.1934 Four Fruits |
ユーザー | Hiroyuki Yamanouchi |
提出日時 | 2022-05-14 07:57:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 686 bytes |
コンパイル時間 | 1,529 ms |
コンパイル使用メモリ | 164,496 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 14:14:45 |
合計ジャッジ時間 | 1,934 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = int64_t; // ------------------------------- // 2022/5/14 Hiroyuki Yamanouchi // AtCoder Rating 171 10級 // ------------------------------- // 問題文 // 4 つのフルーツはすべて同じ種類である // 4 つのフルーツは 2 種類のフルーツ 2 つずつからなる // 4 つのフルーツの種類はすべて異なる int main(){ int a,b,c; cin >> a >> b >> c; int ans; if (a != b && b != c) ans = 6 - (a+b+c); else if (a == b && b == c) ans = a; else if (a == b && b != c) ans = c; else if (a != b && b == c) ans = a; else ans = b; cout << ans << 0; return 0; }