結果
問題 | No.207 世界のなんとか |
ユーザー | kmtrc130 |
提出日時 | 2017-05-17 15:39:37 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 27 ms / 5,000 ms |
コード長 | 423 bytes |
コンパイル時間 | 2,109 ms |
コンパイル使用メモリ | 108,092 KB |
実行使用メモリ | 26,892 KB |
最終ジャッジ日時 | 2024-09-17 20:58:56 |
合計ジャッジ時間 | 3,650 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
25,004 KB |
testcase_01 | AC | 25 ms
26,844 KB |
testcase_02 | AC | 26 ms
24,976 KB |
testcase_03 | AC | 26 ms
26,720 KB |
testcase_04 | AC | 25 ms
24,804 KB |
testcase_05 | AC | 25 ms
26,712 KB |
testcase_06 | AC | 25 ms
22,572 KB |
testcase_07 | AC | 25 ms
24,932 KB |
testcase_08 | AC | 26 ms
24,680 KB |
testcase_09 | AC | 27 ms
24,972 KB |
testcase_10 | AC | 27 ms
24,624 KB |
testcase_11 | AC | 27 ms
24,672 KB |
testcase_12 | AC | 26 ms
24,880 KB |
testcase_13 | AC | 27 ms
24,972 KB |
testcase_14 | AC | 27 ms
24,752 KB |
testcase_15 | AC | 26 ms
26,752 KB |
testcase_16 | AC | 26 ms
26,852 KB |
testcase_17 | AC | 24 ms
24,164 KB |
testcase_18 | AC | 27 ms
26,892 KB |
コンパイルメッセージ
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; class Program { static void Main(string[] args) { string[] AB = Console.ReadLine().Split(' '); long A = long.Parse(AB[0]); long B = long.Parse(AB[1]); for (long i = A; i <= B; i++) { if (i % 3 == 0) { Console.WriteLine(i); continue; } if (i.ToString().IndexOf("3") >= 0) { Console.WriteLine(i); } } } }