結果
問題 | No.661 ハローキティはりんご3個分 |
ユーザー | aaaaaaiu |
提出日時 | 2019-07-28 21:58:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 343 bytes |
コンパイル時間 | 2,130 ms |
コンパイル使用メモリ | 199,284 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 15:08:03 |
合計ジャッジ時間 | 2,485 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int i; cin >> i; while (i--) { int a; cin >> a; if (i % 40 == 0) puts("ikisugi"); else if (i % 8 == 0) puts("iki"); else if (i % 10 == 0) puts("sugi"); else cout << a / 3 << endl; } return 0; }