70分求助 这题下不了测试点
查看原帖
70分求助 这题下不了测试点
427617
蒟蒻珂学家楼主2021/6/13 11:52
#include <iostream>
#include <cstdio>
using namespace std;
int main(){
    int s, v, t = 0;
    cin >> s >> v; 
    t = s / v + 1;
    t += 10;
    printf("%02d:%02d", (480 - t)/60, (480-t) % 60);
    return 0;
}
2021/6/13 11:52
加载中...