結果
| 問題 |
No.746 7の倍数
|
| コンテスト | |
| ユーザー |
Soo6739
|
| 提出日時 | 2018-10-20 09:11:26 |
| 言語 | Nim (2.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 120 bytes |
| コンパイル時間 | 2,992 ms |
| コンパイル使用メモリ | 65,020 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-01 04:55:20 |
| 合計ジャッジ時間 | 4,140 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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