Search found 8 matches

by ashek.rahman
Thu Oct 23, 2014 10:54 am
Forum: Volume 102 (10200-10299)
Topic: 10235 - Simply Emirp
Replies: 150
Views: 51255

Re: 10235 - Simply Emirp

Accepted :) Removed :)
Thanks for your help :)
by ashek.rahman
Wed Oct 15, 2014 2:07 pm
Forum: Volume 100 (10000-10099)
Topic: 10013 - Super long sums
Replies: 212
Views: 67856

Re: 10013 - Super long sums

Removed. Solved. :D :lol:
by ashek.rahman
Mon Mar 24, 2014 7:44 am
Forum: Volume 126 (12600-12699)
Topic: 12602 - Nice Licence Plates
Replies: 7
Views: 2675

Re: 12602 - Nice Licence Plates

@v1n1t...
Code AC. I am new in UVa OJ Board. For that reason did that kind of mistake.
by ashek.rahman
Mon Mar 24, 2014 7:31 am
Forum: Volume 126 (12600-12699)
Topic: 12626 - I ❤ Pizza
Replies: 6
Views: 3795

Re: 12626

Changed my code. Still got wrong answer :(

#include <iostream>
#include <stdio.h>
#include <map>

using namespace std;

int main()
{
int n, pn;
int inum[6] = {3, 1, 1, 1, 2, 1};
string s;
map <char, int> ing;
std::map<char,int>::iterator it;
cin >> n;
getchar();
for (int i=0; i<n; i ...
by ashek.rahman
Thu Mar 20, 2014 2:22 pm
Forum: Volume 126 (12600-12699)
Topic: 12602 - Nice Licence Plates
Replies: 7
Views: 2675

Re: 12602 - Nice Licence Plates

Removed. AC :)
by ashek.rahman
Thu Mar 20, 2014 1:06 pm
Forum: Volume 126 (12600-12699)
Topic: 12602 - Nice Licence Plates
Replies: 7
Views: 2675

Re: 12602 - Nice Licence Plates

What is the problem in my code? I got wrong answer. Please help.

#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>

using namespace std;

int main()
{
int n, fpn, spn;
string s;
cin >> n;
getchar();
for (int i=0; i<n; i++){
getline(cin, s, '-');
fpn = (s[0]-65)*52 ...
by ashek.rahman
Thu Mar 20, 2014 12:16 pm
Forum: Volume 126 (12600-12699)
Topic: 12626 - I ❤ Pizza
Replies: 6
Views: 3795

12626 - I ❤ Pizza

What is problem in my code? I got Wrong answer. Please help.
#include <iostream>
#include <stdio.h>
#include <map>

using namespace std;

int main()
{
int n, pn;
int inum[6] = {3, 1, 1, 1, 2, 1};
string s;
map <char, int> ing;
std::map<char,int>::iterator it;
cin >> n;
getchar();
for (int i ...
by ashek.rahman
Mon Mar 10, 2014 8:23 am
Forum: Volume 101 (10100-10199)
Topic: 10189 - Minesweeper
Replies: 418
Views: 124937

Re: 10189 Minesweeper WA....

I got Wrong answer. But I tested all test cases. Please help me.

#include <iostream>

using namespace std;

int main()
{
long long int n, m, t, s[100][100];
char f[100][100];
t = 1;
while (cin >> n >> m && n!=0 && m!=0){
//cout << n << " " << m << endl;
if (t>1)
cout << endl;
for (long ...

Go to advanced search