結果

問題 No.892 タピオカ
ユーザー watasihakodamawatasihakodama
提出日時 2019-09-29 23:11:25
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 637 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 139,236 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 19:35:41
合計ジャッジ時間 1,370 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<stack>
#include <cmath>
#include <limits>
#include<set>
#include <iomanip>
#include <queue>
#pragma GCC optimize("Ofast")
using namespace std;
const long long INF=20000000000;
//setprecision(2) <<

const int MOD = 1000000007;

long long max(long long a,long long b){
	if(a<b)return b;
	else return a;	
}
long long min(long long a,long long b){
	if(a>b)return b;
	else return a;	
}

set<long long>s;


int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int a,b,c,d,e,f;
	cin>>a>>b>>c>>d>>e>>f;
	if((a+c+e)%2==0)cout<<":-)"<<endl;
	else cout<<":-("<<endl;
}
	
0