Submission #1025743


Source Code Expand

#include <algorithm>
#include <cassert>
#include <cfloat>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <deque>
#include <iomanip>
#include <iostream>
#include <limits>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>

#define FOR(i,k,n) for (int (i)=(k); (i)<(n); ++(i))
#define rep(i,n) FOR(i,0,n)
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define fst first
#define snd second
#define all(v) begin(v), end(v)
#define debug(x) cerr<< #x <<": "<<x<<endl
#define debug2(x,y) cerr<< #x <<": "<< x <<", "<< #y <<": "<< y <<endl

using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<vector<int> > vvi;
typedef vector<ll> vll;
typedef vector<vector<ll> > vvll;
template<class T> using vv=vector<vector< T > >;

int main() {
  int n;
  scanf("%d", &n);
  vector<string> s(n);
  rep (i, n) {
    cin >> s[i];
    reverse(all(s[i]));
  }
  sort(all(s));
  rep (i, n) {
    reverse(all(s[i]));
    cout << s[i] << "\n";
  }

  return 0;
}

Submission Info

Submission Time
Task B - さかさま辞書
User tspcx
Language C++11 (GCC 4.8.1)
Score 100
Code Size 1205 Byte
Status AC
Exec Time 19 ms
Memory 928 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:43:18: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &n);
                  ^

Judge Result

Set Name all
Score / Max Score 100 / 100
Status
AC × 28
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 01_rand_01.txt, 01_rand_02.txt, 01_rand_03.txt, 01_rand_04.txt, 01_rand_05.txt, 01_rand_06.txt, 01_rand_07.txt, 01_rand_08.txt, 01_rand_09.txt, 01_rand_10.txt, 02_long_01.txt, 02_long_02.txt, 02_long_03.txt, 03_short_01.txt, 03_short_02.txt, 03_short_03.txt, 04_max_01.txt, 04_max_02.txt, 04_max_03.txt, 04_max_04.txt, 04_max_05.txt, 05_samestring_01.txt, 05_samestring_02.txt, 05_samestring_03.txt, 05_samestring_04.txt, 05_samestring_05.txt
Case Name Status Exec Time Memory
00_sample_01.txt AC 18 ms 796 KB
00_sample_02.txt AC 19 ms 804 KB
01_rand_01.txt AC 19 ms 796 KB
01_rand_02.txt AC 18 ms 800 KB
01_rand_03.txt AC 18 ms 800 KB
01_rand_04.txt AC 19 ms 800 KB
01_rand_05.txt AC 17 ms 796 KB
01_rand_06.txt AC 18 ms 804 KB
01_rand_07.txt AC 18 ms 900 KB
01_rand_08.txt AC 16 ms 800 KB
01_rand_09.txt AC 18 ms 804 KB
01_rand_10.txt AC 18 ms 804 KB
02_long_01.txt AC 18 ms 804 KB
02_long_02.txt AC 18 ms 928 KB
02_long_03.txt AC 18 ms 804 KB
03_short_01.txt AC 18 ms 676 KB
03_short_02.txt AC 16 ms 804 KB
03_short_03.txt AC 18 ms 804 KB
04_max_01.txt AC 18 ms 804 KB
04_max_02.txt AC 18 ms 800 KB
04_max_03.txt AC 18 ms 800 KB
04_max_04.txt AC 19 ms 800 KB
04_max_05.txt AC 19 ms 928 KB
05_samestring_01.txt AC 19 ms 804 KB
05_samestring_02.txt AC 17 ms 804 KB
05_samestring_03.txt AC 17 ms 800 KB
05_samestring_04.txt AC 17 ms 804 KB
05_samestring_05.txt AC 16 ms 804 KB