結果

問題 No.634 硬貨の枚数1
ユーザー te-shte-sh
提出日時 2018-01-23 14:18:11
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 728 bytes
コンパイル時間 678 ms
コンパイル使用メモリ 97,280 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-06-12 23:36:37
合計ジャッジ時間 2,799 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 10 ms
10,368 KB
testcase_16 AC 5 ms
5,760 KB
testcase_17 AC 7 ms
6,656 KB
testcase_18 AC 6 ms
5,632 KB
testcase_19 AC 4 ms
9,600 KB
testcase_20 AC 5 ms
10,880 KB
testcase_21 AC 12 ms
11,520 KB
testcase_22 AC 11 ms
10,240 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 8 ms
7,808 KB
testcase_37 AC 6 ms
6,144 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 10 ms
10,112 KB
testcase_40 AC 7 ms
7,552 KB
testcase_41 AC 8 ms
7,040 KB
testcase_42 AC 10 ms
9,728 KB
testcase_43 AC 5 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 6 ms
12,032 KB
testcase_48 WA -
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 12 ms
11,904 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 1 ms
5,376 KB
testcase_53 AC 1 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 AC 12 ms
11,776 KB
testcase_56 AC 12 ms
11,776 KB
testcase_57 AC 12 ms
11,648 KB
testcase_58 AC 12 ms
11,520 KB
testcase_59 AC 12 ms
11,520 KB
testcase_60 AC 13 ms
11,392 KB
testcase_61 AC 12 ms
11,520 KB
testcase_62 AC 12 ms
11,392 KB
testcase_63 AC 12 ms
11,648 KB
testcase_64 AC 11 ms
11,648 KB
testcase_65 AC 11 ms
11,392 KB
testcase_66 AC 12 ms
11,776 KB
testcase_67 AC 12 ms
11,648 KB
testcase_68 AC 12 ms
11,648 KB
testcase_69 AC 12 ms
11,648 KB
testcase_70 AC 11 ms
11,648 KB
testcase_71 AC 12 ms
11,520 KB
testcase_72 AC 11 ms
11,648 KB
testcase_73 AC 12 ms
11,392 KB
testcase_74 AC 12 ms
11,392 KB
testcase_75 AC 12 ms
11,264 KB
testcase_76 AC 1 ms
5,376 KB
testcase_77 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void readV(T...)(ref T t){auto r=readln.splitter;foreach(ref v;t){v=r.front.to!(typeof(v));r.popFront;}}
T[] readArray(T)(size_t n){auto a=new T[](n),r=readln.splitter;foreach(ref v;a){v=r.front.to!T;r.popFront;}return a;}
T[] readArrayM(T)(size_t n){auto a=new T[](n);foreach(ref v;a)v=readln.chomp.to!T;return a;}

void main()
{
  int n; readV(n);

  int[] t;
  foreach (k; 0..n) {
    auto ti = k*(k+1)/2;
    if (ti > n) break;
    t ~= ti;
  }

  auto b = new bool[](n+1);
  foreach (ti; t) b[ti] = true;

  if (b[n]) {
    writeln(1);
    return;
  }

  foreach (i; 1..n+1)
    if (b[i] && b[n-i]) {
      writeln(2);
      return;
    }

  writeln(3);
}
0