結果

問題 No.249 N言っちゃダメゲーム (2)
ユーザー バカらっくバカらっく
提出日時 2018-03-05 16:06:11
言語 Swift
(5.10.0)
結果
AC  
実行時間 6 ms / 1,000 ms
コード長 59 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 96,120 KB
実行使用メモリ 7,836 KB
最終ジャッジ日時 2023-08-20 10:28:47
合計ジャッジ時間 863 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,836 KB
testcase_01 AC 6 ms
7,736 KB
testcase_02 AC 4 ms
7,604 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.swift:1:5: warning: immutable value 'i' was never used; consider replacing with '_' or removing it
for i in 0..<1000 {
    ^
    _
Main.swift:2:9: warning: initialization of immutable value 'inpt' was never used; consider replacing with assignment to '_' or removing it
    let inpt = readLine()
    ~~~~^~~~
    _

ソースコード

diff #

for i in 0..<1000 {
    let inpt = readLine()
}
print(500)
0