結果

問題 No.1517 Party Location
ユーザー ABKZABKZ
提出日時 2021-09-26 14:54:08
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 101 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 71,252 KB
最終ジャッジ日時 2023-09-02 04:17:22
合計ジャッジ時間 2,517 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
70,936 KB
testcase_01 AC 72 ms
70,952 KB
testcase_02 AC 75 ms
70,972 KB
testcase_03 AC 77 ms
71,124 KB
testcase_04 AC 73 ms
71,252 KB
testcase_05 AC 80 ms
71,120 KB
testcase_06 AC 76 ms
71,132 KB
testcase_07 AC 79 ms
71,240 KB
testcase_08 AC 82 ms
70,948 KB
testcase_09 AC 78 ms
71,108 KB
testcase_10 AC 76 ms
71,088 KB
testcase_11 AC 78 ms
70,812 KB
testcase_12 AC 77 ms
71,128 KB
testcase_13 AC 81 ms
71,088 KB
testcase_14 AC 81 ms
70,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())
a, b = map(int, input().split())

if a < b:
    print(a * d)
else:
    print(b * d)
0