結果
| 問題 |
No.2621 Fee Schedule
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-02-10 00:51:39 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 10 ms / 2,000 ms |
| コード長 | 242 bytes |
| コンパイル時間 | 4,226 ms |
| コンパイル使用メモリ | 250,796 KB |
| 最終ジャッジ日時 | 2025-02-19 04:20:25 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using mint = atcoder::modint998244353;
int main(){
int a,b,c;
cin>>a>>b>>c;
cout<<min(b,a*c)<<endl;
}