結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー nebukuro09
提出日時 2017-06-03 12:14:50
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 112,856 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 19:43:37
合計ジャッジ時間 5,154 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;

void main() {
    auto N = readln.chomp.to!int;

    foreach (a; 1..N+1)
        foreach (b; 1..N+1) {
            int c = N - a - b;
            if (a <= b && b <= c && c > 0) writeln(a, " ", b, " ", c);
        }
}
0