Submission #32586


ソースコード

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include<bits/stdc++.h>
using namespace std;
int main(){
string str;
string str1;
getline(cin,str);
getline(cin,str1);
if(str.length()>str1.length()){
cout<<"HTN is stronger than TDN."<<endl;
}else if(str.length()<str1.length()){
cout<<"TDN is stronger than HTN."<<endl;
}
else{
cout<<"Draw..."<<endl;
}
return 0;
}

ステータス

項目 データ
問題 0882 - HランDB
ユーザー名 ei1725
投稿日時 2018-04-11 16:19:38
言語 C++11
状態 Accepted
得点 1
ソースコード長 372 Byte
最大実行時間 25 ms
最大メモリ使用量 548 KB

セット

セット 得点 Cases
1 ALL 1 / 1 *

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
input01.txt AC 25 ms 480 KB
1
input02.txt AC 15 ms 452 KB
1
input03.txt AC 17 ms 424 KB
1
input04.txt AC 21 ms 396 KB
1
input05.txt AC 17 ms 368 KB
1
input06.txt AC 17 ms 340 KB
1
input07.txt AC 20 ms 440 KB
1
input08.txt AC 18 ms 548 KB
1