結果
問題 | No.299 蟻本が読めない |
ユーザー | HAHAHA |
提出日時 | 2015-11-14 13:44:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 745 bytes |
コンパイル時間 | 655 ms |
コンパイル使用メモリ | 72,616 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-13 16:43:17 |
合計ジャッジ時間 | 957 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<vector> #include<queue> #include<stack> #include<set> #include<map> #include<utility> #include<sstream> #include<cctype> #include<cmath> #include<algorithm> using namespace std; #define ALL(x) (x).begin(),(x).end() #define RALL(x) (x).rbegin(), (x).rend() #define rev(i,n) for(int (i)=(n-1);(i)>=0;(i)--) #define repp(i,n) for(int (i)=1;(i)<=(n);(i)++) #define rep(i,n) for(int (i)=0;(i)<(n);(i)++) #define rev(i,n) for(int (i)=(n-1);(i)>=0;(i)--) #define clr(a) memset((a), 0 ,sizeof(a)) typedef pair<int,int> P; typedef vector<pair<int,int> > pii; typedef map<string,int> mi; int main(){ long long n; cin >> n; cout << 316+52*(n-1) << endl; return 0; }