結果

問題 No.2414 2 KA 3 KA
ユーザー rlangevinrlangevin
提出日時 2023-09-03 15:00:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 53,292 KB
最終ジャッジ日時 2024-06-12 20:43:32
合計ジャッジ時間 2,513 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,996 KB
testcase_01 AC 43 ms
52,128 KB
testcase_02 AC 39 ms
52,636 KB
testcase_03 AC 38 ms
52,888 KB
testcase_04 AC 39 ms
52,072 KB
testcase_05 AC 38 ms
52,864 KB
testcase_06 AC 39 ms
51,884 KB
testcase_07 AC 39 ms
51,820 KB
testcase_08 AC 38 ms
52,432 KB
testcase_09 AC 39 ms
53,112 KB
testcase_10 AC 39 ms
52,108 KB
testcase_11 AC 40 ms
52,964 KB
testcase_12 AC 39 ms
52,388 KB
testcase_13 AC 39 ms
51,940 KB
testcase_14 AC 40 ms
53,292 KB
testcase_15 AC 40 ms
52,608 KB
testcase_16 AC 40 ms
51,948 KB
testcase_17 AC 39 ms
52,708 KB
testcase_18 AC 40 ms
52,372 KB
testcase_19 AC 40 ms
53,008 KB
testcase_20 AC 40 ms
52,072 KB
testcase_21 AC 40 ms
51,936 KB
testcase_22 AC 40 ms
52,564 KB
testcase_23 AC 41 ms
52,336 KB
testcase_24 AC 40 ms
53,288 KB
testcase_25 AC 40 ms
52,080 KB
testcase_26 AC 40 ms
53,256 KB
testcase_27 AC 39 ms
52,332 KB
testcase_28 AC 40 ms
52,296 KB
testcase_29 AC 39 ms
53,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, input().split())
X = 2 * (A * B + B * C + C * A)
Y = A * B * C
print(2) if X > Y else print(3)
0