結果
問題 |
No.294 SuperFizzBuzz
|
ユーザー |
![]() |
提出日時 | 2017-07-02 13:25:59 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 588 bytes |
コンパイル時間 | 737 ms |
コンパイル使用メモリ | 107,720 KB |
実行使用メモリ | 36,024 KB |
最終ジャッジ日時 | 2024-10-05 07:23:48 |
合計ジャッジ時間 | 7,179 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 TLE * 1 -- * 1 |
other | -- * 12 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace yukicoder_no294 { class MainClass { public static void Main(string[] args) { int N = int.Parse(Console.ReadLine()); //制約の中で最も大きなSuperFizzBuzz(25桁) //5533533555333355355553555 //1111111111111111111111111(33,554,432通り) var count = 0; for (var i = 1; true; i += 2) { var num = 15 * i; if (num.ToString().Replace("3", String.Empty).Replace("5", String.Empty).Length == 0 && ++count == N) { Console.WriteLine("{0}", num); return; } } } } }