結果
問題 | No.1713 trick or treat! |
ユーザー | #leucobird |
提出日時 | 2021-11-21 20:36:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 722 bytes |
コンパイル時間 | 501 ms |
コンパイル使用メモリ | 68,224 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 02:54:11 |
合計ジャッジ時間 | 954 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:35:25: warning: 'x' may be used uninitialized [-Wmaybe-uninitialized] 35 | for (long long x; x >= 1; x--) { | ~~^~~~ main.cpp:35:20: note: 'x' was declared here 35 | for (long long x; x >= 1; x--) { | ^
ソースコード
#include <iostream> #include <vector> using namespace std; int main(void) { int trick, treat; cin >> trick >> treat; int i = 3; vector<int> vec1(4, 0), vec2(4, 0); while (trick > 0) { vec1[i] = trick % 2; trick /= 2; --i; } i = 3; while (treat > 0) { vec2[i] = treat % 2; treat /= 2; --i; } int j = 1; long long x = 0; vector<int> vec3(4, 0); for (int i = 3; i >= 0; i--) { if (vec1[i] || vec2[i]) vec3[i] = 1; x += j * vec3[i]; j *= 2; } long long ans = 1; for (long long x; x >= 1; x--) { ans *= x; } cout << ans << endl; return 0; }