結果

問題 No.2706 One Nafmo
ユーザー miho-4miho-4
提出日時 2024-08-09 17:40:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 82 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 53,900 KB
最終ジャッジ日時 2024-08-09 17:40:32
合計ジャッジ時間 1,405 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,692 KB
testcase_01 AC 34 ms
52,740 KB
testcase_02 AC 34 ms
53,900 KB
testcase_03 AC 33 ms
53,008 KB
testcase_04 AC 32 ms
52,200 KB
testcase_05 AC 32 ms
52,304 KB
testcase_06 AC 34 ms
51,996 KB
testcase_07 AC 34 ms
53,224 KB
testcase_08 AC 32 ms
52,496 KB
testcase_09 AC 32 ms
52,076 KB
testcase_10 AC 31 ms
53,568 KB
testcase_11 AC 31 ms
52,788 KB
testcase_12 AC 35 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,x=map(int,input().split())
ans=0
tmp=0
while tmp<x:
	ans+=b
	tmp+=a
print(ans)
0