結果
| 問題 | No.637 X: Yet Another FizzBuzz Problem |
| コンテスト | |
| ユーザー |
Ichimiya
|
| 提出日時 | 2020-04-30 23:38:47 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 350 bytes |
| 記録 | |
| コンパイル時間 | 1,383 ms |
| コンパイル使用メモリ | 167,060 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-17 22:33:39 |
| 合計ジャッジ時間 | 2,480 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 30 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, c = 0;
while (cin >> n) {
//cout << n << endl;
if (!(n % 3) && !(n % 5)) {
c += 8;
}
else if (!(n % 3) || !(n % 5)) {
c += 4;
}
else {
if (n < 10) {
c++;
}
else if (n < 100) {
c += 2;
}
else {
c += 3;
}
}
}
cout << c << endl;
}
Ichimiya