結果

問題 No.926 休日の平均
ユーザー kohei2019kohei2019
提出日時 2022-01-04 08:37:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 55 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 53,832 KB
最終ジャッジ日時 2024-04-22 01:59:58
合計ジャッジ時間 2,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,124 KB
testcase_01 AC 32 ms
52,304 KB
testcase_02 AC 33 ms
52,864 KB
testcase_03 AC 32 ms
52,596 KB
testcase_04 AC 33 ms
52,268 KB
testcase_05 AC 32 ms
53,184 KB
testcase_06 AC 32 ms
51,876 KB
testcase_07 AC 31 ms
52,140 KB
testcase_08 AC 38 ms
52,240 KB
testcase_09 AC 31 ms
51,992 KB
testcase_10 AC 32 ms
52,216 KB
testcase_11 AC 31 ms
53,832 KB
testcase_12 AC 33 ms
52,000 KB
testcase_13 AC 32 ms
52,068 KB
testcase_14 AC 31 ms
52,676 KB
testcase_15 AC 30 ms
52,484 KB
testcase_16 AC 30 ms
52,068 KB
testcase_17 AC 32 ms
52,440 KB
testcase_18 AC 32 ms
52,336 KB
testcase_19 AC 32 ms
52,140 KB
testcase_20 AC 31 ms
51,940 KB
testcase_21 AC 32 ms
52,300 KB
testcase_22 AC 33 ms
52,584 KB
testcase_23 AC 32 ms
53,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C = map(int,input().split())
ans = A/B*C
print(ans)
0