結果
問題 | No.1699 Unfair RPS |
ユーザー | miraissan |
提出日時 | 2023-11-30 14:30:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 147 bytes |
コンパイル時間 | 1,411 ms |
コンパイル使用メモリ | 165,240 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-26 14:03:16 |
合計ジャッジ時間 | 2,024 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:6:10: warning: 'b' is used uninitialized [-Wuninitialized] 6 | if(b==c){ | ^~ main.cpp:5:13: note: 'b' was declared here 5 | int b,c; | ^ main.cpp:6:10: warning: 'c' is used uninitialized [-Wuninitialized] 6 | if(b==c){ | ^~ main.cpp:5:15: note: 'c' was declared here 5 | int b,c; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int b,c; if(b==c){ cout << "Yes" << endl; }else{ cout << "No" << endl; } }