結果
| 問題 |
No.661 ハローキティはりんご3個分
|
| コンテスト | |
| ユーザー |
trineutron
|
| 提出日時 | 2020-04-13 21:49:24 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 195 bytes |
| コンパイル時間 | 389 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-09-25 10:19:40 |
| 合計ジャッジ時間 | 855 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 WA * 3 |
ソースコード
i = int(input())
for _ in range(i):
s = ""
n = int(input())
if n % 8 == 0:
s += "iki"
if n % 10 == 0:
s += "sugi"
if s == "":
s += str(n)
print(s)
trineutron