結果
| 問題 | No.892 タピオカ |
| コンテスト | |
| ユーザー |
alorie10
|
| 提出日時 | 2019-09-27 21:25:10 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 1,000 ms |
| + 398µs | |
| コード長 | 227 bytes |
| 記録 | |
| コンパイル時間 | 300 ms |
| コンパイル使用メモリ | 72,960 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-09-03 11:44:26 |
| 合計ジャッジ時間 | 1,617 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
#include <iostream>
using namespace std;
int a,b,ans;
int main(void){
for(int i=0;i<3;i++){
cin>>a>>b;
ans+=a&1;
}
//cout<<ans<<endl;
if(ans%2==0)cout<<":-)"<<endl;
else cout<<":-("<<endl;
}
alorie10