結果

問題 No.892 タピオカ
ユーザー courange_cou
提出日時 2020-01-21 21:29:22
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 262 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 38,272 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 06:11:14
合計ジャッジ時間 1,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <math.h>

int main(){
   int a[3];
   int b[3];
   unsigned long long int ans = 0;
   for(int i = 0;i < 3;i++){
      scanf("%d %d ",&a[i],&b[i]);
      ans += a[i];
   }
   if(ans % 2 == 0)printf(":-)\n");
   else printf(":-(\n");
}
0