[Offer收割]编程练习赛80 register

Ended

Participants:102

Verdict:Wrong Answer
Score:0 / 100
Submitted:2018-10-21 13:56:59

Lang:G++

Edit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
//  main.cpp
//  ab
//
//  Created by ww on 2018/10/21.
//  Copyright © 2018 ww. All rights reserved.
//
#include<iostream>
#include <vector>
#include <string>
#include <set>
#include <algorithm>
using namespace std;
#define MAx_size 100001
class Node
{
public:
    int hh;
    int mm;
    int ss;
};
class Solution
{
public:
    Node Split(string s)
    {
        Node n;
        int pos1,pos2;
        pos2 = s.find(":");
        pos1 = 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX