結果

問題 No.892 タピオカ
ユーザー tokutarotokutaro
提出日時 2020-03-20 21:35:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 484 bytes
コンパイル時間 796 ms
コンパイル使用メモリ 66,492 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-08 21:08:29
合計ジャッジ時間 3,533 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;

ll power(int a, int b) {
    if (b == 0) return 1;
    if (b % 2 == 1) return power(a, b/2) * power(a, b/2) * a;
    else return power(a, b/2) * power(a, b/2);
}
int main() {
    int a1, b1, a2, b2, a3, b3;
    cin >> a1 >> b1 >> a2 >> b2 >> a3 >> b3;
    ll sum = 0;
    sum += power(a1, b1) + power(a2, b2) + power(a3, b3);
    if (sum % 2 == 0) cout << ":-)";
    else cout << ":-(";
    cout << endl;
    return 0;
}
0