Submission #561744


Source Code Expand

#include<bits/stdc++.h>
using namespace std;

#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define REP(i,n) for (int i=0;i<(n);i++)
#define ALL(a) (a).begin(),(a).end()

template<typename U, typename T>
void chmin(U &x, T y) { x = min(x, y); }

template<typename U, typename T>
void chmax(U &x, T y) { x = max(x, y); }

typedef long long int lli;
typedef long double ld;
typedef pair<int,int> P;

const int INF = INT_MAX/3;
const double EPS = 1e-14;
const int dx[4] = {0, 1, 0, -1}; // {-1,  0,  1, -1, 1, -1, 0, 1};
const int dy[4] = {1, 0, -1, 0}; // {-1, -1, -1,  0, 0,  1, 1, 1};


int main() {
  cout << fixed << setprecision(10);
  int H1, H2;
  cin >> H1 >> H2;
  cout << H1 - H2 << endl;
  return 0;
}

Submission Info

Submission Time
Task A - 積雪深差
User hnagamin
Language C++ (G++ 4.6.4)
Score 100
Code Size 740 Byte
Status AC
Exec Time 32 ms
Memory 1056 KB

Judge Result

Set Name all
Score / Max Score 100 / 100
Status
AC × 20
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt
Case Name Status Exec Time Memory
00_sample_01.txt AC 27 ms 1052 KB
00_sample_02.txt AC 26 ms 1052 KB
00_sample_03.txt AC 26 ms 1048 KB
test_01.txt AC 26 ms 1056 KB
test_02.txt AC 26 ms 1044 KB
test_03.txt AC 27 ms 1044 KB
test_04.txt AC 26 ms 1048 KB
test_05.txt AC 27 ms 1036 KB
test_06.txt AC 27 ms 984 KB
test_07.txt AC 28 ms 1052 KB
test_08.txt AC 28 ms 1048 KB
test_09.txt AC 27 ms 944 KB
test_10.txt AC 28 ms 940 KB
test_11.txt AC 29 ms 944 KB
test_12.txt AC 29 ms 944 KB
test_13.txt AC 28 ms 936 KB
test_14.txt AC 32 ms 996 KB
test_15.txt AC 29 ms 1040 KB
test_16.txt AC 27 ms 940 KB
test_17.txt AC 27 ms 1048 KB