結果

問題 No.188 HAPPY DAY
コンテスト
ユーザー ardggy
提出日時 2021-02-12 00:23:14
言語 Nim
(2.2.8)
コンパイル:
nim --nimcache=~ --hints:off -o:a.out -d:release cpp _filename_
実行:
./a.out
結果
MLE  
実行時間 -
コード長 284 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,957 ms
コンパイル使用メモリ 67,824 KB
実行使用メモリ 75,792 KB
最終ジャッジ日時 2026-04-02 03:36:14
合計ジャッジ時間 3,012 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other MLE * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'strutils' [UnusedImport]
/home/judge/data/code/Main.nim(1, 18) Warning: imported and not used: 'sequtils' [UnusedImport]

ソースコード

diff #
raw source code

import strutils, sequtils

proc main() =
   echo 14
   # 1 -> 1,10
   # 2 -> 2,11,20 
   # 3 -> 3,12,21,30
   # 4 -> 4,13,22
   # 5 -> 5,14,23
   # 6 -> 6,15,24
   # 7 -> 7,16,25
   # 8 -> 8,17,26
   # 9 -> 9,18,27
   # 10 -> 28 
   # 11 -> 29
   # 12 -> xx

when isMainModule: main()
0