結果
| 問題 |
No.441 和か積
|
| コンテスト | |
| ユーザー |
conf
|
| 提出日時 | 2016-11-27 09:06:14 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 122 bytes |
| コンパイル時間 | 553 ms |
| コンパイル使用メモリ | 56,924 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-27 12:05:06 |
| 合計ジャッジ時間 | 1,814 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 30 |
ソースコード
#include <iostream>
#include <algorithm>
using namespace std;
int main(){
int A,B;
cin>>A>>B;
cout<<max(A*B,A+B)<<endl;
}
conf