結果

問題 No.785 色食い虫
ユーザー ninoinui
提出日時 2020-02-11 23:01:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 1,491 ms
コンパイル使用メモリ 166,796 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-01 09:00:01
合計ジャッジ時間 2,271 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  string s;
  int i, ans = 1;
  while (cin >> s) i = s.size(), i = (i == 4) ? 16 : 16 - ++i / 2, ans *= i * i;
  cout << ans << "\n";
}
0