結果
問題 | No.2706 One Nafmo |
ユーザー | RYOH2718 |
提出日時 | 2024-03-31 13:33:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 377 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 82,780 KB |
実行使用メモリ | 53,844 KB |
最終ジャッジ日時 | 2024-09-30 18:02:17 |
合計ジャッジ時間 | 1,402 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,584 KB |
testcase_01 | AC | 41 ms
51,584 KB |
testcase_02 | AC | 41 ms
51,712 KB |
testcase_03 | AC | 42 ms
52,224 KB |
testcase_04 | AC | 42 ms
51,840 KB |
testcase_05 | AC | 41 ms
51,840 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
# 標準入力された値を整数に変換する def INT(): return int(input()) # 標準入力された複数の値を整数に変換する def MI(): return map(int, input().split()) # 標準入力された複数の値を整数のリストに変換する def LI(): return list(map(int, input().split())) A, B, X = MI() ans = B * (X + A - 1) // A print(ans)