結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-08-19 23:17:01
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 237 bytes
コンパイル時間 3,941 ms
コンパイル使用メモリ 106,628 KB
実行使用メモリ 29,168 KB
最終ジャッジ日時 2024-11-21 21:52:38
合計ジャッジ時間 5,067 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
22,708 KB
testcase_01 AC 32 ms
24,736 KB
testcase_02 AC 30 ms
25,136 KB
testcase_03 AC 32 ms
27,144 KB
testcase_04 AC 30 ms
26,904 KB
testcase_05 AC 30 ms
25,124 KB
testcase_06 AC 30 ms
27,012 KB
testcase_07 AC 30 ms
25,264 KB
testcase_08 AC 30 ms
27,000 KB
testcase_09 AC 30 ms
23,096 KB
testcase_10 AC 30 ms
25,264 KB
testcase_11 AC 29 ms
24,880 KB
testcase_12 AC 30 ms
24,952 KB
testcase_13 AC 30 ms
27,032 KB
testcase_14 AC 30 ms
25,080 KB
testcase_15 AC 31 ms
27,136 KB
testcase_16 AC 30 ms
25,208 KB
testcase_17 AC 30 ms
25,004 KB
testcase_18 AC 30 ms
25,212 KB
testcase_19 AC 30 ms
26,900 KB
testcase_20 AC 31 ms
27,128 KB
testcase_21 AC 30 ms
27,128 KB
testcase_22 AC 32 ms
26,896 KB
testcase_23 AC 31 ms
24,992 KB
testcase_24 AC 32 ms
27,132 KB
testcase_25 AC 31 ms
27,132 KB
testcase_26 AC 30 ms
24,728 KB
testcase_27 AC 31 ms
29,168 KB
testcase_28 AC 31 ms
24,988 KB
testcase_29 AC 30 ms
25,220 KB
testcase_30 AC 33 ms
25,116 KB
testcase_31 AC 29 ms
24,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

class No637{
    static void Main(string[] args){
        Console.WriteLine(Console.ReadLine().Split(' ').Select(x=>Int32.Parse(x)).Sum(x=>((x%15)==0)?8:(x%5==0||x%3==0)?4:(x<10)?1:(x<100)?2:3));
    }
}
0