結果

問題 No.892 タピオカ
ユーザー tokutarotokutaro
提出日時 2020-03-20 21:35:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 484 bytes
コンパイル時間 772 ms
コンパイル使用メモリ 66,644 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-12-15 04:33:21
合計ジャッジ時間 7,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 1 ms
10,016 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 1 ms
10,148 KB
testcase_04 AC 124 ms
10,020 KB
testcase_05 TLE -
testcase_06 AC 405 ms
6,820 KB
testcase_07 TLE -
testcase_08 TLE -
権限があれば一括ダウンロードができます

ソースコード

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