結果
| 問題 |
No.637 X: Yet Another FizzBuzz Problem
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-02-02 10:06:40 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 28 ms / 1,000 ms |
| コード長 | 474 bytes |
| コンパイル時間 | 903 ms |
| コンパイル使用メモリ | 106,496 KB |
| 実行使用メモリ | 19,072 KB |
| 最終ジャッジ日時 | 2024-06-28 18:53:12 |
| 合計ジャッジ時間 | 2,609 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 30 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;
public class Program
{
static void Main()
{
var InputValue = Console.ReadLine().Split(' ').Select(x => Convert.ToInt32(x));
int StringCount = 0;
foreach(var Value in InputValue)
{
if (Value % 15 == 0)
{
StringCount += 8;
continue;
}
if(Value % 5 == 0 || Value % 3 == 0)
{
StringCount += 4;
continue;
}
StringCount += Value.ToString().Length;
}
Console.WriteLine(StringCount);
}
}