結果
問題 | No.250 atetubouのzetubou |
ユーザー | E31415926 |
提出日時 | 2016-04-01 17:26:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
OLE
|
実行時間 | - |
コード長 | 476 bytes |
コンパイル時間 | 449 ms |
コンパイル使用メモリ | 55,988 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-02 08:49:19 |
合計ジャッジ時間 | 16,198 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | OLE | - |
testcase_01 | WA | - |
testcase_02 | OLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include<iostream> using namespace std; int main() { unsigned long long q, *d, *x, *t, i, j, a; cin >> q; d = new unsigned long long[q]; x = new unsigned long long[q]; t = new unsigned long long[q]; for (i = 0; i < q; i++)cin >> d[i] >> x[i] >> t[i]; for (i = 0; i < q; i++) { a = 1; for (j = 1; j < d[i]; j++) { a = a*(x[i] + j) / j; if (a > t[i])cout << "ZETUBOU" << endl; } cout << "AC" << endl; } delete[] t; delete[] x; delete[] d; return 0; }