結果
問題 | No.892 タピオカ |
ユーザー | courange_cou |
提出日時 | 2020-01-21 21:29:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
ソースコード
#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"); }