結果
問題 | No.2414 2 KA 3 KA |
ユーザー | ooaiu |
提出日時 | 2023-10-06 12:15:37 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 129 bytes |
コンパイル時間 | 426 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-26 15:21:45 |
合計ジャッジ時間 | 1,924 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 28 |
ソースコード
A, B, C = map(int, input().split()) surface = 2*(A*B+B*C+C*A) volume = A*B*C if surface > volume: print(2) else: print(3)