結果
| 問題 | No.746 7の倍数 |
| コンテスト | |
| ユーザー |
Soo6739
|
| 提出日時 | 2018-10-20 09:11:26 |
| 言語 | Nim (2.2.6) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 120 bytes |
| 記録 | |
| コンパイル時間 | 2,337 ms |
| コンパイル使用メモリ | 70,144 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2026-03-21 23:22:09 |
| 合計ジャッジ時間 | 3,336 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 RE * 1 |
| other | RE * 20 |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 18) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import strutils, sequtils var N = parseInt(readLine(stdin)) NN = 10 for i in 2..N : NN = NN*10 echo int(NN/7)/NN
Soo6739