結果
問題 | No.311 z in FizzBuzzString |
ユーザー |
|
提出日時 | 2020-09-18 17:02:07 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 29 ms / 1,500 ms |
コード長 | 230 bytes |
コンパイル時間 | 1,815 ms |
コンパイル使用メモリ | 191,344 KB |
最終ジャッジ日時 | 2025-01-14 16:08:58 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
#include <bits/stdc++.h>using namespace std;unsigned long long N;void input() { cin >> N; }void solve() { cout << (N / 5 + N / 3) * 2 << endl; }int main() {ios::sync_with_stdio(false);cin.tie(0);input();solve();}