F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

View Compilation Error

0_0_18026514_4092.cpp:24:2: error: stray '#' in program
   //  freopen("in.txt", "r", stdin);
  ^
0_0_18026514_4092.cpp:25:2: error: stray '#' in program
     int n, len[N];
  ^
0_0_18026514_4092.cpp:25:9: error: stray '#' in program
     int n, len[N];
         ^
0_0_18026514_4092.cpp:26:2: error: stray '#' in program
     string line, buf;
  ^
0_0_18026514_4092.cpp:26:9: error: stray '#' in program
     string line, buf;
         ^
0_0_18026514_4092.cpp:27:2: error: stray '#' in program
     n = 0;
  ^
0_0_18026514_4092.cpp:27:9: error: stray '#' in program
     n = 0;
         ^
0_0_18026514_4092.cpp:28:2: error: stray '#' in program
     memset(len, 0, sizeof(len));
  ^
0_0_18026514_4092.cpp:28:9: error: stray '#' in program
     memset(len, 0, sizeof(len));
         ^
0_0_18026514_4092.cpp:29:2: error: stray '#' in program
     while((getline(cin, line) != NULL))
  ^
0_0_18026514_4092.cpp:29:9: error: stray '#' in program
     while((getline(cin, line) != NULL))
         ^
0_0_18026514_4092.cpp:30:2: error: stray '#' in program
     {
  ^
0_0_18026514_4092.cpp:30:9: error: stray '#' in program
     {
         ^
0_0_18026514_4092.cpp:31:2: error: stray '#' in program
         if(line == "") continue;
  ^
0_0_18026514_4092.cpp:31:9: error: stray '#' in program
         if(line == "") continue;
         ^
0_0_18026514_4092.cpp:31:16: error: stray '#' in program
         if(line == "") continue;
                ^
0_0_18026514_4092.cpp:31:23: error: stray '#' in program
         if(line == "") continue;
                       ^
0_0_18026514_4092.cpp:32:2: error: stray '#' in program
         n ++;
  ^
0_0_18026514_4092.cpp:32:9: error: stray '#' in program
         n ++;
         ^
0_0_18026514_4092.cpp:32:16: error: stray '#' in program
         n ++;
                ^
0_0_18026514_4092.cpp:32:23: error: stray '#' in program
         n ++;
                       ^
0_0_18026514_4092.cpp:33:2: error: stray '#' in program
         stringstream ss(line);
  ^
0_0_18026514_4092.cpp:33:9: error: stray '#' in program
         stringstream ss(line);
         ^
0_0_18026514_4092.cpp:33:16: error: stray '#' in program
         stringstream ss(line);
                ^
0_0_18026514_4092.cpp:33:23: error: stray '#' in program
         stringstream ss(line);
                       ^
0_0_18026514_4092.cpp:34:2: error: stray '#' in program
         int i = 0;
  ^
0_0_18026514_4092.cpp:34:9: error: stray '#' in program
         int i = 0;
         ^
0_0_18026514_4092.cpp:34:16: error: stray '#' in program
         int i = 0;
                ^
0_0_18026514_4092.cpp:34:23: error: stray '#' in program
         int i = 0;
                       ^
0_0_18026514_4092.cpp:35:2: error: stray '#' in program
         while(ss >> buf)
  ^
0_0_18026514_4092.cpp:35:9: error: stray '#' in program
         while(ss >> buf)
         ^
0_0_18026514_4092.cpp:35:16: error: stray '#' in program
         while(ss >> buf)
                ^
0_0_18026514_4092.cpp:35:23: error: stray '#' in program
         while(ss >> buf)
                       ^
0_0_18026514_4092.cpp:36:2: error: stray '#' in program
         {
  ^
0_0_18026514_4092.cpp:36:9: error: stray '#' in program
         {
         ^
0_0_18026514_4092.cpp:36:16: error: stray '#' in program
         {
                ^
0_0_18026514_4092.cpp:36:23: error: stray '#' in program
         {
                       ^
0_0_18026514_4092.cpp:37:2: error: stray '#' in program
             len[i] = max(len[i], (int)buf.size());
  ^
0_0_18026514_4092.cpp:37:9: error: stray '#' in program
             len[i] = max(len[i], (int)buf.size());
         ^
0_0_18026514_4092.cpp:37:16: error: stray '#' in program
             len[i] = max(len[i], (int)buf.size());
                ^
0_0_18026514_4092.cpp:37:23: error: stray '#' in program
             len[i] = max(len[i], (int)buf.size());
                       ^
0_0_18026514_4092.cpp:37:30: error: stray '#' in program
             len[i] = max(len[i], (int)buf.size());
                              ^
0_0_18026514_4092.cpp:37:37: error: stray '#' in program
             len[i] = max(len[i], (int)buf.size());
                                     ^
0_0_18026514_4092.cpp:38:2: error: stray '#' in program
             vec[n].push_back(buf);
  ^
0_0_18026514_4092.cpp:38:9: error: stray '#' in program
             vec[n].push_back(buf);
         ^
0_0_18026514_4092.cpp:38:16: error: stray '#' in program
             vec[n].push_back(buf);
                ^
0_0_18026514_4092.cpp:38:23: error: stray '#' in program
             vec[n].push_back(buf);
                       ^
0_0_18026514_4092.cpp:38:30: error: stray '#' in program
             vec[n].push_back(buf);
                              ^
0_0_18026514_4092.cpp:38:37: error: stray '#' in program
             vec[n].push_back(buf);
                                     ^
0_0_18026514_4092.cpp:39:2: error: stray '#' in program
             i ++;
  ^
0_0_18026514_4092.cpp:39:9: error: stray '#' in program
             i ++;
         ^
0_0_18026514_4092.cpp:39:16: error: stray '#' in program
             i ++;
                ^
0_0_18026514_4092.cpp:39:23: error: stray '#' in program
             i ++;
                       ^
0_0_18026514_4092.cpp:39:30: error: stray '#' in program
             i ++;
                              ^
0_0_18026514_4092.cpp:39:37: error: stray '#' in program
             i ++;
                                     ^
0_0_18026514_4092.cpp:40:2: error: stray '#' in program
         }
  ^
0_0_18026514_4092.cpp:40:9: error: stray '#' in program
         }
         ^
0_0_18026514_4092.cpp:40:16: error: stray '#' in program
         }
                ^
0_0_18026514_4092.cpp:40:23: error: stray '#' in program
         }
                       ^
0_0_18026514_4092.cpp:41:2: error: stray '#' in program
     }
  ^
0_0_18026514_4092.cpp:41:9: error: stray '#' in program
     }
         ^
0_0_18026514_4092.cpp:42:2: error: stray '#' in program
     for(int i = 1; i <= n; i ++)
  ^
0_0_18026514_4092.cpp:42:9: error: stray '#' in program
     for(int i = 1; i <= n; i ++)
         ^
0_0_18026514_4092.cpp:43:2: error: stray '#' in program
     {
  ^
0_0_18026514_4092.cpp:43:9: error: stray '#' in program
     {
         ^
0_0_18026514_4092.cpp:45:2: error: stray '#' in program
         for(int j = 0; j < vec[i].size(); j ++)
  ^
0_0_18026514_4092.cpp:45:9: error: stray '#' in program
         for(int j = 0; j < vec[i].size(); j ++)
         ^
0_0_18026514_4092.cpp:45:16: error: stray '#' in program
         for(int j = 0; j < vec[i].size(); j ++)
                ^
0_0_18026514_4092.cpp:45:23: error: stray '#' in program
         for(int j = 0; j < vec[i].size(); j ++)
                       ^
0_0_18026514_4092.cpp:46:2: error: stray '#' in program
         {
  ^
0_0_18026514_4092.cpp:46:9: error: stray '#' in program
         {
         ^
0_0_18026514_4092.cpp:46:16: error: stray '#' in program
         {
                ^
0_0_18026514_4092.cpp:46:23: error: stray '#' in program
         {
                       ^
0_0_18026514_4092.cpp:47:2: error: stray '#' in program
             int len0 = vec[i][j].size();
  ^
0_0_18026514_4092.cpp:47:9: error: stray '#' in program
             int len0 = vec[i][j].size();
         ^
0_0_18026514_4092.cpp:47:16: error: stray '#' in program
             int len0 = vec[i][j].size();
                ^
0_0_18026514_4092.cpp:47:23: error: stray '#' in program
             int len0 = vec[i][j].size();
                       ^
0_0_18026514_4092.cpp:47:30: error: stray '#' in program
             int len0 = vec[i][j].size();
                              ^
0_0_18026514_4092.cpp:47:37: error: stray '#' in program
             int len0 = vec[i][j].size();
        


Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-12-02 10:49:59, Gzip enabled