結果

問題 No.445 得点
ユーザー nebukuro09nebukuro09
提出日時 2016-11-18 22:22:32
言語 Python2
(2.7.18)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 6,512 KB
実行使用メモリ 7,868 KB
最終ジャッジ日時 2023-09-12 07:13:58
合計ジャッジ時間 2,031 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
7,868 KB
testcase_01 AC 23 ms
7,648 KB
testcase_02 AC 23 ms
7,788 KB
testcase_03 AC 23 ms
7,668 KB
testcase_04 AC 22 ms
7,656 KB
testcase_05 AC 23 ms
7,680 KB
testcase_06 AC 23 ms
7,668 KB
testcase_07 AC 22 ms
7,664 KB
testcase_08 AC 22 ms
7,648 KB
testcase_09 AC 22 ms
7,792 KB
testcase_10 AC 22 ms
7,816 KB
testcase_11 AC 22 ms
7,820 KB
testcase_12 AC 22 ms
7,816 KB
testcase_13 AC 22 ms
7,732 KB
testcase_14 AC 23 ms
7,824 KB
testcase_15 AC 23 ms
7,820 KB
testcase_16 AC 22 ms
7,680 KB
testcase_17 AC 22 ms
7,792 KB
testcase_18 AC 22 ms
7,656 KB
testcase_19 AC 22 ms
7,616 KB
testcase_20 AC 23 ms
7,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction as F
A, B = map(int, raw_input().split())
print 50*A+int(F(50*A, F(4,5)+F(1,5)*B))
0