結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー ikdikd
提出日時 2017-12-16 12:51:56
言語 D
(dmd 2.109.1)
結果
RE  
実行時間 -
コード長 402 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 92,012 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-12 23:09:57
合計ジャッジ時間 3,768 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

void main(){
  import std.stdio, std.string, std.conv, std.algorithm;

  auto s=readln.chomp.to!(char[]);

  assert(false);
}

void rd(T...)(ref T x){
  import std.stdio, std.string, std.conv;
  auto l=readln.split;
  assert(l.length==x.length);
  foreach(i, ref e; x){
    e=l[i].to!(typeof(e));
  }
}
void wr(T...)(T x){
  import std.stdio;
  foreach(e; x) stderr.write(e, " ");
  stderr.writeln();
}
0