結果
| 問題 |
No.841 8/32
|
| コンテスト | |
| ユーザー |
kou_kkk
|
| 提出日時 | 2023-10-01 16:28:11 |
| 言語 | Nim (2.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 166 bytes |
| コンパイル時間 | 3,249 ms |
| コンパイル使用メモリ | 65,316 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-26 13:29:26 |
| 合計ジャッジ時間 | 4,410 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 WA * 5 |
ソースコード
import strutils let xs = stdin.readLine.split var cnt = 0 for x in xs: if x in ["Sun","Sat"]: inc cnt echo case cnt: of 0: "8/31" of 1: "8/32" else: "8/33"
kou_kkk