結果

問題 No.2414 2 KA 3 KA
ユーザー kapoon
提出日時 2024-01-15 16:26:37
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 62,848 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-28 02:22:10
合計ジャッジ時間 1,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;
int main(void){
    int a,b,c;
    cin>>a>>b>>c;
    long long int x=2*(a*b+b*c+c*a),y=a*b*c;
    if(x>y){
        cout<<"2"<<endl;
    }else{
        cout<<3<<endl;
    }
    return 0;
}
0