結果
| 問題 |
No.299 蟻本が読めない
|
| コンテスト | |
| ユーザー |
保登心愛
|
| 提出日時 | 2015-11-13 22:26:06 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 326 bytes |
| コンパイル時間 | 603 ms |
| コンパイル使用メモリ | 59,116 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-13 14:38:20 |
| 合計ジャッジ時間 | 857 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
#include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long ll;
#define SORT(x) sort((x).begin(), (x).end())
#define RSORT(x) sort((x).begin(), (x).end(), greater<int>() )
int main() {
ll n;
cin >> n;
cout << 316 + (n - 1) * 52 << endl;
}
保登心愛