結果
| 問題 |
No.637 X: Yet Another FizzBuzz Problem
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-02-02 10:02:28 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 479 bytes |
| コンパイル時間 | 1,231 ms |
| コンパイル使用メモリ | 114,192 KB |
| 実行使用メモリ | 29,560 KB |
| 最終ジャッジ日時 | 2024-12-31 00:22:19 |
| 合計ジャッジ時間 | 3,409 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 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 += InputValue.ToString().Length;
}
Console.WriteLine(StringCount);
}
}