結果

問題 No.2414 2 KA 3 KA
ユーザー tnakao0123
提出日時 2023-08-21 14:38:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 549 ms
コンパイル使用メモリ 40,136 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-15 03:09:30
合計ジャッジ時間 1,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2414.cc:  No.2414 2 KA 3 KA - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

/* typedef */

/* global variables */

/* subroutines */

/* main */

int main() {
  int a, b, c;
  scanf("%d%d%d", &a, &b, &c);

  int x = (a * b + b * c + c * a) * 2;
  int y = a * b * c;

  printf("%d\n", (x > y) ? 2 : 3);
  return 0;
}
0