Submission #180955


Source Code Expand

#include <iostream> 
#include <string> 
#include <vector> 
#include <cmath> 
#include <algorithm> 
#include <cstdlib> 
#include <ctime> 
#include <cstdio> 
#include <functional> 
#include <set> 
#include <sstream> 

using namespace std; 

#define MP make_pair

long gcd(long a, long b){ 

  if(a%b==0) return b; 
  else return gcd(b,a%b); 

} 

long lcm(long a, long b){ 
  return a*b/gcd(a,b); 
} 

int main(){

	string s;
	cin>>s;
	cout<<s+"pp"<<endl;

	return 0;
}

Submission Info

Submission Time
Task A - ハンドルネーム
User lay20114
Language C++ (G++ 4.6.4)
Score 100
Code Size 501 Byte
Status AC
Exec Time 21 ms
Memory 928 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 5
Set Name Test Cases
All test_aaaaaaaaaa.txt, test_myonmyon.txt, test_nemui.txt, test_onakasuita.txt, test_p.txt
Case Name Status Exec Time Memory
sample_01.txt AC 20 ms 928 KB
sample_02.txt AC 21 ms 808 KB
test_aaaaaaaaaa.txt AC 21 ms 676 KB
test_myonmyon.txt AC 21 ms 804 KB
test_nemui.txt AC 20 ms 800 KB
test_onakasuita.txt AC 21 ms 924 KB
test_p.txt AC 20 ms 928 KB