結果

問題 No.299 蟻本が読めない
ユーザー Grun1396
提出日時 2016-08-12 20:29:31
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 53,596 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 12:14:29
合計ジャッジ時間 860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int main()
{
	int n;
	int page = 0;
	//1,000,000,000
	cin >> n;
	page = 316 + n * 52;


	cout << page << endl;


	return 0;
}
0