結果
問題 | No.522 Make Test Cases(テストケースを作る) |
ユーザー | mban |
提出日時 | 2017-06-03 14:18:45 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 679 bytes |
コンパイル時間 | 769 ms |
コンパイル使用メモリ | 108,880 KB |
実行使用メモリ | 36,008 KB |
最終ジャッジ日時 | 2024-09-22 04:29:45 |
合計ジャッジ時間 | 6,104 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 23 ms
25,700 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; class Program { static void Main(string[] args) { new Magatro().Solve(); } } class Magatro { private int N; public void Solve() { N = int.Parse(Console.ReadLine()); for (int a = 1; a <= N / 3; a++) { for (int b = a; a + b <= N / 3 * 2; b++) { int c = N - a - b; //if (c <= 0 || b > c) //{ // continue; //} Console.WriteLine("{0} {1} {2}", a, b, c); } } } }