結果
問題 | No.311 z in FizzBuzzString |
ユーザー |
![]() |
提出日時 | 2018-02-14 02:40:20 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 254 bytes |
コンパイル時間 | 471 ms |
コンパイル使用メモリ | 62,460 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-24 22:03:16 |
合計ジャッジ時間 | 992 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 7 WA * 4 |
ソースコード
#include <iostream> using namespace std; #define rep(i,n) for(int i=0;i<(n);i++) #define reps(i,f,n) for(int i=(f);i<(n);i++) #define all(v) (v).begin(),(v).end() #define P(x) cout <<x << endl; int main(){ int n; cin >> n; P((n/3 + n/5)*2); }