codeforces108A

sol:暴力每次加一分钟

printf(“%02d",a)

表示不到两位左边补0

复制代码
#include <bits/stdc++.h>
using namespace std;
typedef int ll;
inline ll read()
{
    ll s=0; bool f=0; char ch=' ';
    while(!isdigit(ch)) {f|=(ch=='-'); ch=getchar();}
    while(isdigit(ch)) {s=(s<<3)+(s<<1)+(ch^48); ch=getchar();}
    return (f)?(-s):(s);
}
#define R(x) x=read()
inline void write(ll x)
{
    if(x<0) {putchar('-'); x=-x;}
    if(x<10) {putchar(x+'0'); return;}
    write(x/10); putchar((x%10)+'0');
}
#define W(x) write(x),putchar(' ')
#define Wl(x) write(x),putchar('\n')
int a,b;
inline int sb(int x)
{
    return x%10*10+x/10;
}
int main()
{
    R(a); R(b);
    while(233)
    {
        b++;
        if(!(b%60))
        {
            b=0; a++;
        }
        a%=24;
        if(a==sb(b)) 
        {
            printf("%02d:%02d\n",a,b); return 0;
        }
    }
    return 0;
}
View Code
复制代码

 

posted @   yccdu  阅读(35)  评论(1编辑  收藏  举报
编辑推荐:
· 记录一次线上服务OOM排查
· Linux实时系统Xenomai宕机问题的深度定位过程
· 记一次 .NET某汗液测试机系统 崩溃分析
· 深度解析Mamba与状态空间模型:一图带你轻松入门
· 记一次 .NET某电商医药网站 CPU爆高分析
阅读排行:
· Bogus:.NET的假数据生成利器
· 如何做好软件架构师
· 记录一次线上服务OOM排查
· 阿里云IP遭受DDOS攻击 快速切换IP实践
· itextpdf 找出PDF中 文字的坐标
点击右上角即可分享
微信分享提示