結果

問題 No.1517 Party Location
ユーザー pengin_2000
提出日時 2021-07-11 02:24:12
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 27,008 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 02:57:34
合計ジャッジ時間 749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 1 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main()
{
	int a, b, d;
	scanf("%d %d %d", &a, &b, &d);
	if (a < b)
		printf("%d\n", d * a);
	else
		printf("%d\n", d * b);
	return 0;
}
0