結果
問題 | No.745 letinopia raoha |
ユーザー | ldsyb |
提出日時 | 2018-10-19 21:38:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 554 bytes |
コンパイル時間 | 1,676 ms |
コンパイル使用メモリ | 166,028 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-11-18 20:13:23 |
合計ジャッジ時間 | 2,127 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:6:5: warning: 'd' is used uninitialized [-Wuninitialized] 6 | if (10 <= d) { | ^~ main.cpp:5:18: note: 'd' was declared here 5 | int a, b, c, d; | ^ main.cpp:12:31: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized] 12 | for (int i = 0, p = 50; i < b; i++) { | ~~^~~ main.cpp:5:12: note: 'b' was declared here 5 | int a, b, c, d; | ^ main.cpp:18:51: warning: 'a' may be used uninitialized [-Wmaybe-uninitialized] 18 | for (int i = 0, p = 100 * (1 << (b / 100)); i < a; i++) { | ~~^~~ main.cpp:5:9: note: 'a' was declared here 5 | int a, b, c, d; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int a, b, c, d; if (10 <= d) { cout << "Impossible" << endl; return 0; } cout << "Possible" << endl; int score = 0; for (int i = 0, p = 50; i < b; i++) { score += p; if (i % 100 == 0) { p *= 2; } } for (int i = 0, p = 100 * (1 << (b / 100)); i < a; i++) { score += p; if (i + b % 100 == 100) { p *= 2; } } score -= d * 100; cout << score << endl; return 0; }