結果

問題 No.2414 2 KA 3 KA
ユーザー iseeisee
提出日時 2023-08-12 14:33:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 53,624 KB
最終ジャッジ日時 2024-11-23 03:28:24
合計ジャッジ時間 2,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,464 KB
testcase_01 AC 34 ms
52,620 KB
testcase_02 AC 34 ms
53,032 KB
testcase_03 AC 34 ms
52,336 KB
testcase_04 AC 31 ms
52,964 KB
testcase_05 AC 32 ms
52,892 KB
testcase_06 AC 33 ms
52,952 KB
testcase_07 AC 34 ms
53,068 KB
testcase_08 AC 34 ms
52,324 KB
testcase_09 AC 38 ms
52,092 KB
testcase_10 AC 35 ms
52,972 KB
testcase_11 AC 34 ms
52,120 KB
testcase_12 AC 32 ms
51,944 KB
testcase_13 AC 32 ms
53,296 KB
testcase_14 AC 34 ms
52,156 KB
testcase_15 AC 33 ms
53,536 KB
testcase_16 AC 35 ms
52,128 KB
testcase_17 AC 34 ms
53,488 KB
testcase_18 AC 33 ms
52,328 KB
testcase_19 AC 34 ms
53,624 KB
testcase_20 AC 35 ms
52,924 KB
testcase_21 AC 33 ms
53,212 KB
testcase_22 AC 34 ms
52,252 KB
testcase_23 AC 34 ms
52,728 KB
testcase_24 AC 33 ms
52,612 KB
testcase_25 AC 35 ms
53,144 KB
testcase_26 AC 31 ms
52,816 KB
testcase_27 AC 31 ms
52,440 KB
testcase_28 AC 31 ms
52,880 KB
testcase_29 AC 31 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

def main():
    # 入力
    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 3)

if __name__ == "__main__":
    main()
0