結果

問題 No.350 d=vt
ユーザー 双六
提出日時 2020-08-11 04:04:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 60,672 KB
最終ジャッジ日時 2024-10-09 11:07:42
合計ジャッジ時間 1,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")
import copy

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	v, t = list(input().split())

	vnew = ""
	for i in range(4):
		vnew += v[-1 - i]

	vnew = int(vnew[::-1])
	ans = vnew * int(t) // 10000
	print(ans)


if __name__ == '__main__':
	main()
0