結果
| 問題 |
No.1934 Four Fruits
|
| コンテスト | |
| ユーザー |
umezo
|
| 提出日時 | 2022-05-14 02:01:24 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 24 ms / 2,000 ms |
| コード長 | 290 bytes |
| コンパイル時間 | 1,716 ms |
| コンパイル使用メモリ | 191,652 KB |
| 最終ジャッジ日時 | 2025-01-29 07:51:06 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
#include<bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int a,b,c;
cin>>a>>b>>c;
cout<<(a^b^c)<<endl;
return 0;
}
umezo