結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー Kura
提出日時 2019-02-17 15:24:56
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 391 bytes
コンパイル時間 625 ms
コンパイル使用メモリ 57,408 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-25 10:10:03
合計ジャッジ時間 1,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
using namespace std;
int main() {
	int a[6];
	cin >> a[0] >> a[1] >> a[2] >> a[3] >> a[4];
	a[5] = 0;
	for (int i = 0; i < 5; i++) {
		if (a[i] % 15 == 0) {
			a[5] += 8;
		}
		else if(a[i]%3==0){
			a[5] += 4;
		}
		else if (a[i] % 5 == 0) {
			a[5] += 4;
		}
		else {
			string S = to_string(a[i]);
			a[5] += S.length();
		}
	}
	cout << a[5] << endl;
}
0