結果
問題 | No.1057 素敵な日 |
ユーザー | hotaka0213 |
提出日時 | 2020-06-05 17:58:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 198 bytes |
コンパイル時間 | 496 ms |
コンパイル使用メモリ | 63,364 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-09 14:36:38 |
合計ジャッジ時間 | 912 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | WA | - |
ソースコード
#include <iostream> int main(){ int A,B; std::cin>>A>>B; if(A>B){ std::cout<<B*2<<std::endl; }else if(A=B){ std::cout<<A*2-1<<std::endl; }else{ std::cout<<A*2<<std::endl; } return 0; }