码迷,mamicode.com
首页 > 其他好文 > 详细

1037 在霍格沃茨找零钱

时间:2020-02-19 12:49:51      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:can   wap   alt   algo   iostream   info   pre   def   using   

水题。

#include<iostream>
#include<algorithm>
using namespace std;

typedef long long LL;
int main() {
    LL G1,S1,K1,G2,S2,K2;
    scanf("%lld.%lld.%lld %lld.%lld.%lld",&G1,&S1,&K1,&G2,&S2,&K2);
    K1 += S1*29+G1*17*29;
    K2 += S2*29+G2*17*29;
    if(K1 > K2) {
        cout<<"-";
        swap(K1,K2);
    }
    LL t = K2-K1;
    printf("%lld.%lld.%lld",t/(17*29),t%(17*29)/29,t%29);
    return 0;
}

技术图片

 

1037 在霍格沃茨找零钱

标签:can   wap   alt   algo   iostream   info   pre   def   using   

原文地址:https://www.cnblogs.com/keep23456/p/12330658.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!