結果
| 問題 | No.311 z in FizzBuzzString |
| コンテスト | |
| ユーザー |
tntan
|
| 提出日時 | 2015-12-15 02:44:45 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 1,500 ms |
| + 417µs | |
| コード長 | 239 bytes |
| 記録 | |
| コンパイル時間 | 346 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-09-03 12:27:40 |
| 合計ジャッジ時間 | 1,428 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
#include <vector>
using namespace std;
static const int MAX_N = 1000005;
int main()
{
long long n;
cin >> n;
cout << 2 * (n / 3 + n / 5) << endl;
return 0;
}
tntan